Skip to content

Commit 109ee64

Browse files
committed
[ci] bump actions versions to silence warnings; add node 20 to the matrix
1 parent 58b6209 commit 109ee64

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/gh-pages-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: GH Pages Deploy
22

33
on:
4-
workflow_dispatch:
4+
workflow_dispatch:
55
push:
66
branches:
77
- master

.github/workflows/run-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99

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

1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- name: npm install, build, and test
@@ -29,7 +29,7 @@ jobs:
2929
JOB_CONTEXT: ${{ toJson(matrix) }}
3030
run: echo "$JOB_CONTEXT"
3131
- name: Coveralls
32-
if: matrix.node-version == '14.x'
32+
if: matrix.node-version == '20.x'
3333
uses: coverallsapp/github-action@master
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)