Skip to content

Commit

Permalink
bump node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed Sep 24, 2022
1 parent cbc2a28 commit 774ea9d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 16 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,17 @@ jobs:
# ubuntu build not supported in paket.dependencies for repo builds,
# need to add linux commands first
os: [windows-latest, macos-latest]
dotnet: [6.0.101]
fail-fast: false # we have timing issues on some OS, so we want them all to run
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v2
- uses: actions/setup-node@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- uses: actions/setup-node@v2-beta
with:
node-version: '14'
node-version: '16'
cache: 'yarn'
- name: Restore tools
run: dotnet tool restore
- run: yarn global add vsce
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,15 @@ jobs:
steps:
# manual triggers are detached HEADs, so we need to checkout the branch
# to actually create + push a commit later on in the workflow
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v2
- uses: actions/setup-node@v3
with:
dotnet-version: '6.0.101'
- uses: actions/setup-node@v2-beta
with:
node-version: '14'
node-version: '16'
cache: 'yarn'
- name: Restore tools
run: dotnet tool restore
- name: install VSCE globally
Expand Down
3 changes: 1 addition & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"sdk": {
"version": "6.0.101",
"rollForward": "latestFeature"
"version": "6.0.401"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"xpath": "^0.0.32"
},
"engines": {
"node": ">=14.0.0"
"node": ">=16.0.0"
}
}

0 comments on commit 774ea9d

Please sign in to comment.