Skip to content

Commit 54db080

Browse files
committed
ci(workflows): use latest compatible node version
1 parent 8295d3b commit 54db080

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

.github/workflows/deploy-prod-api.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
4343
with:
4444
node-version-file: .nvmrc
45+
check-latest: true
4546
package-manager-cache: false
4647
registry-url: "https://registry.npmjs.org/"
4748

.github/workflows/deploy-prod-updates.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
4242
with:
4343
node-version-file: .nvmrc
44+
check-latest: true
4445
package-manager-cache: false
4546
registry-url: "https://registry.npmjs.org/"
4647

.github/workflows/deploy-stage-api.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
4646
with:
4747
node-version-file: .nvmrc
48+
check-latest: true
4849
package-manager-cache: false
4950
registry-url: "https://registry.npmjs.org/"
5051

.github/workflows/deploy-stage-updates.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
4545
with:
4646
node-version-file: .nvmrc
47+
check-latest: true
4748
package-manager-cache: false
4849
registry-url: "https://registry.npmjs.org/"
4950

.github/workflows/publish-package-api.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
2828
with:
2929
node-version-file: .nvmrc
30+
check-latest: true
3031
package-manager-cache: false
3132
registry-url: "https://registry.npmjs.org/"
3233

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77
pull_request:
88

9-
# No GITHUB_TOKEN permissions, as we don't use it.
9+
# No GITHUB_TOKEN permissions, as we don't use it.
1010
permissions: {}
1111

1212
jobs:
@@ -24,6 +24,7 @@ jobs:
2424
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
2525
with:
2626
node-version-file: .nvmrc
27+
check-latest: true
2728
cache: npm
2829

2930
- name: Install
@@ -46,6 +47,7 @@ jobs:
4647
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
4748
with:
4849
node-version-file: .nvmrc
50+
check-latest: true
4951
cache: npm
5052
cache-dependency-path: api/package-lock.json
5153

@@ -75,6 +77,7 @@ jobs:
7577
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
7678
with:
7779
node-version-file: .nvmrc
80+
check-latest: true
7881
cache: npm
7982
cache-dependency-path: updates/package-lock.json
8083

0 commit comments

Comments
 (0)