Skip to content

Commit 04fea13

Browse files
committed
Update action versions.
1 parent f465998 commit 04fea13

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/main.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
matrix:
1919
node-version: [6.x, 8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x, 24.x]
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
persist-credentials: false
2424
# FIXME: Install/build with 16.x until webpack is updated
2525
- name: Use Node.js 16.x
26-
uses: actions/setup-node@v4
26+
uses: actions/setup-node@v6
2727
with:
2828
node-version: 16.x
2929
- run: npm install
3030
# FIXME: Run tests with target version until webpack is updated
3131
- name: Use Node.js ${{ matrix.node-version }}
32-
uses: actions/setup-node@v4
32+
uses: actions/setup-node@v6
3333
with:
3434
node-version: ${{ matrix.node-version }}
3535
- name: Run test with Node.js ${{ matrix.node-version }}
@@ -42,11 +42,11 @@ jobs:
4242
node-version: [16.x]
4343
bundler: [webpack, browserify]
4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v5
4646
with:
4747
persist-credentials: false
4848
- name: Use Node.js ${{ matrix.node-version }}
49-
uses: actions/setup-node@v4
49+
uses: actions/setup-node@v6
5050
with:
5151
node-version: ${{ matrix.node-version }}
5252
- run: npm install
@@ -61,11 +61,11 @@ jobs:
6161
# matrix:
6262
# node-version: [16.x]
6363
# steps:
64-
# - uses: actions/checkout@v4
64+
# - uses: actions/checkout@v5
6565
# with:
6666
# persist-credentials: false
6767
# - name: Use Node.js ${{ matrix.node-version }}
68-
# uses: actions/setup-node@v4
68+
# uses: actions/setup-node@v6
6969
# with:
7070
# node-version: ${{ matrix.node-version }}
7171
# - run: npm install
@@ -78,19 +78,19 @@ jobs:
7878
matrix:
7979
node-version: [16.x]
8080
steps:
81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@v5
8282
with:
8383
persist-credentials: false
8484
- name: Use Node.js ${{ matrix.node-version }}
85-
uses: actions/setup-node@v4
85+
uses: actions/setup-node@v6
8686
with:
8787
node-version: ${{ matrix.node-version }}
8888
- run: npm install
8989
- name: Generate coverage report
9090
run: npm run coverage-ci
9191
- name: Upload coverage to Codecov
92-
uses: codecov/codecov-action@v4
92+
uses: codecov/codecov-action@v5
9393
with:
94-
file: ./coverage/lcov.info
94+
files: ./coverage/lcov.info
9595
fail_ci_if_error: true
9696
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)