Skip to content

Commit 01c15f1

Browse files
committed
chore: fix targeting latest node
1 parent 580f2ed commit 01c15f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
contents: read
1111

1212
env:
13-
NODE_VERSION: '24.x'
13+
TARGET_NODE_VERSION: '24.x'
1414

1515
jobs:
1616
build:
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set up node
5252
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
5353
with:
54-
node-version: ${{ env.NODE_VERSION }}
54+
node-version: ${{ env.TARGET_NODE_VERSION }}
5555
cache: "npm"
5656

5757
- name: Install dependencies
@@ -81,7 +81,7 @@ jobs:
8181
- name: Set up node
8282
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
8383
with:
84-
node-version: ${{ env.NODE_VERSION }}
84+
node-version: ${{ env.TARGET_NODE_VERSION }}
8585
cache: "npm"
8686

8787
- name: Install dependencies

0 commit comments

Comments
 (0)