Skip to content

Commit f3c2276

Browse files
committed
Trying to resolve the Install Python error on windows runner: part 3 - actions bump.
Signed-off-by: ubi de feo <me@ubidefeo.com>
1 parent a619546 commit f3c2276

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414

1515
env:
1616
JOB_TRANSFER_ARTIFACT: build-artifacts
17+
NODE_VERSION: 18.17
1718

1819
jobs:
1920
build:
@@ -31,13 +32,13 @@ jobs:
3132

3233
steps:
3334
- name: Checkout
34-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3536

36-
- name: Install Node.js 18.17
37+
- name: Install Node.js ${{ env.NODE_VERSION }}
3738
if: runner.name != 'WINDOWS-SIGN-PC'
38-
uses: actions/setup-node@v3
39+
uses: actions/setup-node@v4
3940
with:
40-
node-version: '18.17'
41+
node-version: ${{ env.NODE_VERSION }}
4142
registry-url: 'https://registry.npmjs.org'
4243

4344
- name: Install Python 3.x

0 commit comments

Comments
 (0)