Skip to content

Commit

Permalink
CI: Lock Node version for Windows to 21.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacingBat3 committed May 3, 2024
1 parent 4aefeda commit c8d4599
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
node-version: ${{ matrix.name == 'Windows' && 21 || 'latest' }}
cache: npm

- name: Lock Python version (macOS only)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
node-version: ${{ matrix.name == 'Windows' && 21 || 'latest' }}
cache: npm

- name: Lock Python version (macOS only)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
node-version: ${{ matrix.name == 'Windows' && 21 || 'latest' }}
cache: npm

- name: Lock Python version (macOS only)
Expand Down

0 comments on commit c8d4599

Please sign in to comment.