Skip to content

Commit d59cc11

Browse files
authored
Update GitHub Actions (#644)
1 parent f26c52f commit d59cc11

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,27 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest]
16-
node-version: [18.x]
16+
node-version: [22.x]
1717

1818
env:
1919
ELM_HOME: '${{ github.workspace }}/elm-stuff/elm-home'
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

24-
- uses: actions/setup-node@v3
24+
- uses: actions/setup-node@v4
2525
with:
2626
node-version: '${{ matrix.node-version }}'
2727

2828
- name: Cache node_modules
2929
id: cache-node_modules
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: node_modules
3333
key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
3434

3535
- name: Cache ELM_HOME
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: '${{ env.ELM_HOME }}'
3939
key: elm-${{ matrix.os }}-${{ hashFiles('elm-tooling.json', 'elm/**/elm.json', 'example-*/**/elm.json', 'tests/**/elm.json') }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@ jobs:
2525
ELM_HOME: '${{ github.workspace }}/elm-stuff/elm-home'
2626

2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929

30-
- uses: actions/setup-node@v3
30+
- uses: actions/setup-node@v4
3131
with:
3232
node-version: '${{ matrix.node-version }}'
3333

3434
- name: Cache node_modules
3535
id: cache-node_modules
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: node_modules
3939
key: node_modules-${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
4040

4141
- name: Cache ELM_HOME
42-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4343
with:
4444
path: '${{ env.ELM_HOME }}'
4545
key: elm-${{ matrix.os }}-${{ hashFiles('elm-tooling.json', 'elm/**/elm.json', 'example-*/**/elm.json', 'tests/**/elm.json') }}

0 commit comments

Comments
 (0)