Skip to content

Commit 278932e

Browse files
ci: update actions and test against node.js 16.x
1 parent 5e8b889 commit 278932e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [14.x]
16+
node-version: [16]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: Update system
2121
run: sudo apt-get update
2222
- name: Install system dependencies
2323
run: sudo apt-get install -y ubuntu-restricted-addons chromium-codecs-ffmpeg-extra gstreamer1.0-libav gstreamer1.0-plugins-ugly gstreamer1.0-vaapi
2424
- name: Using Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v1
25+
uses: actions/setup-node@v3
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
- name: Cache Node.js modules
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3
3030
with:
3131
# npm cache files are stored in `~/.npm` on Linux/macOS
3232
path: ~/.npm

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
publish-npm:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
- uses: actions/setup-node@v1
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 14
14+
node-version: 16
1515
registry-url: https://registry.npmjs.org/
1616
- name: Cache Node.js modules
17-
uses: actions/cache@v2
17+
uses: actions/cache@v3
1818
with:
1919
# npm cache files are stored in `~/.npm` on Linux/macOS
2020
path: ~/.npm

0 commit comments

Comments
 (0)