Skip to content

Commit 81092d4

Browse files
committed
Update GitHub Actions workflow to use Ubuntu 24.04 and Node.js versions 18.x, 20.x, and 22.x
1 parent 37ccf0c commit 81092d4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/coverage.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ on: [push, pull_request]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99

1010
strategy:
1111
matrix:
12-
node-version: [16.x]
12+
node-version: [18.x, 20.x, 22.x]
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
with:
18-
fetch-depth: 2
18+
fetch-depth: 2
1919

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

@@ -32,4 +32,4 @@ jobs:
3232
- name: Upload coverage to Codecov
3333
uses: codecov/codecov-action@v2
3434
with:
35-
token: ${{ secrets.CODECOV_TOKEN }}
35+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)