Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit 705f524

Browse files
committed
Use node v16 for github actions
1 parent 35321cd commit 705f524

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release-on-vtag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Create Release
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- uses: actions/create-release@v1
1313
env:
1414
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

.github/workflows/run-spec-on-push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Run Specifications
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v2
9-
- uses: actions/setup-node@v2
8+
- uses: actions/checkout@v3
9+
- uses: actions/setup-node@v3
1010
- run: npm install
1111
- run: npm test

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"w3c"
4141
],
4242
"jshintConfig": {
43-
"esversion": 9,
43+
"esversion": 11,
4444
"strict": "implied",
4545
"eqeqeq": true,
4646
"undef": true,
@@ -82,7 +82,7 @@
8282
"plugin-error": "~2.0",
8383
"through2": "~4.0",
8484
"vinyl": "~3.0",
85-
"w3c-html-validator": "~1.1"
85+
"w3c-html-validator": "~1.2"
8686
},
8787
"devDependencies": {
8888
"@types/node": "~18.8",

0 commit comments

Comments
 (0)