@@ -10,10 +10,10 @@ jobs:
1010 os : [macos-latest, ubuntu-latest, windows-latest]
1111 runs-on : ${{ matrix.os }}
1212 steps :
13- - uses : actions/checkout@v2
14- - uses : actions/setup-node@v1
13+ - uses : actions/checkout@v3
14+ - uses : actions/setup-node@v3
1515 with :
16- node-version : " 13.x "
16+ node-version : 16
1717 - run : yarn install
1818 - name : Run tests
1919 uses : GabrielBB/xvfb-action@v1.0
@@ -24,29 +24,29 @@ jobs:
2424 env :
2525 VSIX_FILE : vscode-R.vsix
2626 steps :
27- - uses : actions/checkout@v2
27+ - uses : actions/checkout@v3
2828 - run : node $SCRIPT_DIR/enableWebpack.js
2929 - run : yarn install
3030 - uses : lannonbr/vsce-action@master
3131 with :
3232 args : " package -o $VSIX_FILE"
33- - uses : actions/upload-artifact@v1
33+ - uses : actions/upload-artifact@v3
3434 with :
3535 name : ${{ env.VSIX_FILE }}
3636 path : ${{ env.VSIX_FILE }}
3737 eslint :
3838 runs-on : ubuntu-latest
3939 steps :
40- - uses : actions/checkout@v2
41- - uses : actions/setup-node@v1
40+ - uses : actions/checkout@v3
41+ - uses : actions/setup-node@v3
4242 with :
43- node-version : " 13.x "
43+ node-version : 16
4444 - run : yarn install
4545 - run : yarn run lint
4646 markdownlint-cli :
4747 runs-on : ubuntu-latest
4848 steps :
49- - uses : actions/checkout@v2
49+ - uses : actions/checkout@v3
5050 - uses : nosborn/github-action-markdown-cli@v1.1.1
5151 with :
5252 files : .
5757 container :
5858 image : rocker/tidyverse:latest
5959 steps :
60- - uses : actions/checkout@v2
60+ - uses : actions/checkout@v3
6161 - name : Install apt-get dependencies
6262 run : |
6363 apt-get update
@@ -73,10 +73,10 @@ jobs:
7373 devreplay :
7474 runs-on : ubuntu-latest
7575 steps :
76- - uses : actions/checkout@v2
77- - uses : actions/setup-node@v1
76+ - uses : actions/checkout@v3
77+ - uses : actions/setup-node@v3
7878 with :
79- node-version : " 13.x "
79+ node-version : 16
8080 - run : yarn install
8181 - name : Run devreplay
8282 run : ./node_modules/.bin/devreplay ./src devreplay.json
0 commit comments