Skip to content

Commit 7a30c6c

Browse files
authored
fix(build): Use current version of GitHub actions to avoid warnings (#2461)
The old action versions previously specified attempted to use Node.js v12, which is no longer supported, and a warning is issued when they run on v16 instead. Update build.yml so that we use versions of the actions that use a version of node.js that is still supported.
1 parent 6e6c421 commit 7a30c6c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
matrix:
1616
node-version: [18.x, 20.x, 22.x]
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424

@@ -35,10 +35,10 @@ jobs:
3535
timeout-minutes: 5
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v4
3939

4040
- name: Setup node
41-
uses: actions/setup-node@v3
41+
uses: actions/setup-node@v4
4242
with:
4343
node-version: 20
4444

@@ -52,10 +52,10 @@ jobs:
5252
timeout-minutes: 5
5353
runs-on: ubuntu-latest
5454
steps:
55-
- uses: actions/checkout@v2
55+
- uses: actions/checkout@v4
5656

5757
- name: Setup node
58-
uses: actions/setup-node@v3
58+
uses: actions/setup-node@v4
5959
with:
6060
node-version: 20
6161

0 commit comments

Comments
 (0)