Skip to content

Commit

Permalink
Fix GitHub Actions VSCE unsupported engine
Browse files Browse the repository at this point in the history
Signed-off-by: paulober <[email protected]>
  • Loading branch information
paulober committed Sep 9, 2024
1 parent 09ef408 commit d7faa84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable
- name: Setup node v18
- name: Setup node v20
uses: actions/setup-node@v4
with:
# the current node version used included in VS Code
node-version: '18'
# the current node version included in VS Code
node-version: '20'
cache: 'yarn'
- name: Install Dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable
- name: Setup node v18
- name: Setup node v20
uses: actions/setup-node@v4
with:
# the current node version use in vscode
node-version: '18'
# the current node version used in vscode
node-version: '20'
cache: 'yarn'
- name: Set up Python
uses: actions/setup-python@v5
Expand Down

0 comments on commit d7faa84

Please sign in to comment.