Skip to content

Commit 774ea9d

Browse files
committed
bump node versions
1 parent cbc2a28 commit 774ea9d

File tree

4 files changed

+12
-16
lines changed

4 files changed

+12
-16
lines changed

.github/workflows/pr.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,17 @@ jobs:
1313
# ubuntu build not supported in paket.dependencies for repo builds,
1414
# need to add linux commands first
1515
os: [windows-latest, macos-latest]
16-
dotnet: [6.0.101]
1716
fail-fast: false # we have timing issues on some OS, so we want them all to run
1817
runs-on: ${{ matrix.os }}
1918

2019
steps:
21-
- uses: actions/checkout@v1
20+
- uses: actions/checkout@v3
2221
- name: Setup .NET Core
23-
uses: actions/setup-dotnet@v1
22+
uses: actions/setup-dotnet@v2
23+
- uses: actions/setup-node@v3
2424
with:
25-
dotnet-version: ${{ matrix.dotnet }}
26-
- uses: actions/setup-node@v2-beta
27-
with:
28-
node-version: '14'
25+
node-version: '16'
26+
cache: 'yarn'
2927
- name: Restore tools
3028
run: dotnet tool restore
3129
- run: yarn global add vsce

.github/workflows/release.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,15 @@ jobs:
2020
steps:
2121
# manual triggers are detached HEADs, so we need to checkout the branch
2222
# to actually create + push a commit later on in the workflow
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424
with:
2525
ref: ${{ github.head_ref }}
2626
- name: Setup .NET Core
27-
uses: actions/setup-dotnet@v1
27+
uses: actions/setup-dotnet@v2
28+
- uses: actions/setup-node@v3
2829
with:
29-
dotnet-version: '6.0.101'
30-
- uses: actions/setup-node@v2-beta
31-
with:
32-
node-version: '14'
30+
node-version: '16'
31+
cache: 'yarn'
3332
- name: Restore tools
3433
run: dotnet tool restore
3534
- name: install VSCE globally

global.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"sdk": {
3-
"version": "6.0.101",
4-
"rollForward": "latestFeature"
3+
"version": "6.0.401"
54
}
65
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"xpath": "^0.0.32"
2727
},
2828
"engines": {
29-
"node": ">=14.0.0"
29+
"node": ">=16.0.0"
3030
}
3131
}

0 commit comments

Comments
 (0)