Skip to content

Commit

Permalink
CI: update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vouillon committed Feb 23, 2024
1 parent 7b1e094 commit 17e95d0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
git config --global core.ignorecase false
- name: Install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: v22.0.0-v8-canary20231204cf8ac0f493

- name: Restore cached binaryen
id: cache-binaryen
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: binaryen
key: ${{ runner.os }}-binaryen-version_116
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Cache binaryen
if: steps.cache-binaryen.outputs.cache-hit != 'true'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: binaryen
key: ${{ runner.os }}-binaryen-version_116
Expand All @@ -73,7 +73,7 @@ jobs:
- name: Restore cached OCaml
id: cache-ocaml
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
~/.opam
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Cache OCaml
if: steps.cache-ocaml.outputs.cache-hit != 'true'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: |
~/.opam
Expand Down

0 comments on commit 17e95d0

Please sign in to comment.