Skip to content

Commit d0382a1

Browse files
committed
upgrade gh actions, node and java
1 parent b64c2bb commit d0382a1

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v6
4444

45-
- name: Setup node version [${{ vars.NODE_VERSION }}]
45+
- name: Setup node version [${{ env.NODE_VERSION }}]
4646
uses: actions/setup-node@v6
4747
with:
48-
node-version: ${{ vars.NODE_VERSION }}
48+
node-version: ${{ env.NODE_VERSION }}
4949

5050
- uses: actions/setup-java@v5
5151
with:
5252
distribution: 'temurin'
53-
java-version: ${{ vars.JAVA_VERSION }}
53+
java-version: ${{ env.JAVA_VERSION }}
5454

5555
- name: Print Versions
5656
run: |
@@ -121,12 +121,12 @@ jobs:
121121

122122
- uses: actions/setup-node@v6
123123
with:
124-
node-version: ${{ vars.NODE_VERSION }}
124+
node-version: ${{ env.NODE_VERSION }}
125125

126126
- uses: actions/setup-java@v5
127127
with:
128128
distribution: 'temurin'
129-
java-version: ${{ vars.JAVA_VERSION }}
129+
java-version: ${{ env.JAVA_VERSION }}
130130

131131
- name: Print Versions
132132
run: |
@@ -201,7 +201,7 @@ jobs:
201201

202202
- uses: actions/setup-node@v6
203203
with:
204-
node-version: ${{ vars.NODE_VERSION }}
204+
node-version: ${{ env.NODE_VERSION }}
205205

206206
- name: Print Versions
207207
run: |
@@ -279,7 +279,7 @@ jobs:
279279
- uses: actions/setup-java@v5
280280
with:
281281
distribution: 'temurin'
282-
java-version: ${{ vars.JAVA_VERSION }}
282+
java-version: ${{ env.JAVA_VERSION }}
283283

284284
- name: Print Versions
285285
run: |
@@ -362,11 +362,11 @@ jobs:
362362
- uses: actions/checkout@v6
363363
- uses: actions/setup-node@v6
364364
with:
365-
node-version: ${{ vars.NODE_VERSION }}
365+
node-version: ${{ env.NODE_VERSION }}
366366
- uses: actions/setup-java@v5
367367
with:
368368
distribution: 'temurin'
369-
java-version: ${{ vars.JAVA_VERSION }}
369+
java-version: ${{ env.JAVA_VERSION }}
370370

371371
- name: Print Versions
372372
run: |
@@ -435,11 +435,11 @@ jobs:
435435
- uses: actions/checkout@v6
436436
- uses: actions/setup-node@v6
437437
with:
438-
node-version: ${{ vars.NODE_VERSION }}
438+
node-version: ${{ env.NODE_VERSION }}
439439
- uses: actions/setup-java@v5
440440
with:
441441
distribution: 'temurin'
442-
java-version: ${{ vars.JAVA_VERSION }}
442+
java-version: ${{ env.JAVA_VERSION }}
443443

444444
# Download standard XMLs into their own folder structure
445445
- name: Download Standard Surefire Artifacts

.github/workflows/generate-images-for-regression-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ jobs:
4949

5050
- uses: actions/setup-node@v6
5151
with:
52-
node-version: ${{ vars.NODE_VERSION }}
52+
node-version: ${{ env.NODE_VERSION }}
5353

5454
- uses: actions/setup-java@v5
5555
with:
5656
distribution: 'temurin'
57-
java-version: ${{ vars.JAVA_VERSION }}
57+
java-version: ${{ env.JAVA_VERSION }}
5858

5959
- name: Install libs
6060
run: |

0 commit comments

Comments
 (0)