Skip to content

Commit 40f16db

Browse files
authored
Merge pull request #12 from wolfadex/upgrade-depedenncies-and-ci
Upgrade CI deps and Elm deps
2 parents a38fe2e + aad7b11 commit 40f16db

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
17-
- name: Use Node.js 18
18-
uses: actions/setup-node@v2
16+
- uses: actions/checkout@v4
17+
- name: Use Node.js 20
18+
uses: actions/setup-node@v4
1919
with:
20-
node-version: 18
20+
node-version: 20
2121
# Re-use node_modules between runs until package-lock.json changes.
2222
- name: Cache node_modules
2323
id: cache-node_modules
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: node_modules
2727
key: node_modules-${{ hashFiles('package-lock.json') }}
@@ -30,7 +30,7 @@ jobs:
3030
# review/elm.json changes. The Elm compiler saves downloaded Elm packages
3131
# to ~/.elm, and elm-tooling saves downloaded tool executables there.
3232
- name: Cache ~/.elm
33-
uses: actions/cache@v2
33+
uses: actions/cache@v4
3434
with:
3535
path: ~/.elm
3636
key: elm-${{ hashFiles('elm.json', 'elm-tooling.json', 'review/elm.json') }}

0 commit comments

Comments
 (0)