Skip to content

Commit bd418c9

Browse files
committed
restore behaviour of actions/setup-node@v4
1 parent 23ba0ed commit bd418c9

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/check_version_number.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: check-version-number
22

33
on:
44
pull_request:
5-
types: [ opened, synchronize, reopened, edited ]
6-
branches:
5+
types: [opened, synchronize, reopened, edited]
6+
branches:
77
- main
88

99
jobs:
@@ -18,6 +18,7 @@ jobs:
1818
- uses: actions/setup-node@v5
1919
with:
2020
node-version: '22'
21+
package-manager-cache: false
2122

2223
- name: Validate Version Number by calling grunt validateVersions
2324
run: |

.github/workflows/create_release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- uses: actions/setup-node@v5
1919
with:
2020
node-version: '22'
21+
package-manager-cache: false
2122

2223
- name: Load Version of Latest Release
2324
id: check # This will be the reference for getting the outputs.

.github/workflows/eslint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
push:
33
branches: ['dev']
44
pull_request:
5-
types: [ opened, synchronize, reopened, edited ]
5+
types: [opened, synchronize, reopened, edited]
66
branches:
77
- dev
88

@@ -17,6 +17,7 @@ jobs:
1717
uses: actions/setup-node@v5
1818
with:
1919
node-version: '22'
20+
package-manager-cache: false
2021

2122
- name: Generate Build Info
2223
run: bash create_build_info.sh

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test The Application
22

33
on:
44
pull_request:
5-
types: [ opened, synchronize, reopened, edited ]
5+
types: [opened, synchronize, reopened, edited]
66
branches:
77
- main
88
- dev
@@ -24,6 +24,7 @@ jobs:
2424
uses: actions/setup-node@v5
2525
with:
2626
node-version: '22'
27+
package-manager-cache: false
2728

2829
- name: Install yarn
2930
run: npm install -g yarn

0 commit comments

Comments
 (0)