Skip to content

Commit

Permalink
backport fix for PR 11377 (#11394)
Browse files Browse the repository at this point in the history
  • Loading branch information
aalves08 authored Jul 9, 2024
1 parent bc56037 commit a5b0e97
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '16.20.2'
- name: Validate Plugin build system
run: ./shell/scripts/test-plugins-build.sh
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/storybook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
storybook:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '16.20.2'
- name: Install packages
run: yarn install
- name: Build Storybook
Expand Down
3 changes: 2 additions & 1 deletion shell/creators/app/app.package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"dependencies": {},
"resolutions": {
"**/webpack": "4",
"@types/node": "^16"
"@types/node": "^16",
"glob": "7.2.3"
}
}
2 changes: 1 addition & 1 deletion shell/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rancher/shell",
"version": "1.2.3",
"version": "1.2.4",
"description": "Rancher Dashboard Shell",
"repository": "https://github.com/rancherlabs/dashboard",
"license": "Apache-2.0",
Expand Down
3 changes: 3 additions & 0 deletions storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,8 @@
"dependencies": {
"tsconfig-paths-webpack-plugin": "^4.0.0",
"vue-loader": "15.10.1"
},
"resolutions": {
"glob": "7.2.3"
}
}

0 comments on commit a5b0e97

Please sign in to comment.