Skip to content

Commit

Permalink
ci: require node 18.18.2 for workflow jobs (#5991)
Browse files Browse the repository at this point in the history
Without #5990, this breaks on 18.19.x and above. See: #5910.
  • Loading branch information
quisquous authored Dec 7, 2023
1 parent 85c3631 commit 90c57c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/actions/setup-js-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ runs:
steps:
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '18.18.2'
cache: 'npm'
cache-dependency-path: 'package-lock.json'

- name: Install Dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">=18.10.0 <=18.18.2"
"node": ">=18.10.0 <18.19"
},
"stylelint": {
"extends": "stylelint-config-standard"
Expand Down

0 comments on commit 90c57c2

Please sign in to comment.