Skip to content

Commit b86c784

Browse files
committed
fix: JDK version syntax
1 parent 767914b commit b86c784

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
with:
3434
ref: ${{ github.event.client_payload.ref || github.ref }}
3535

36-
- name: Set up JDK 1.8
36+
- name: Set up JDK 8
3737
uses: actions/setup-java@v4
3838
with:
3939
distribution: 'zulu'
40-
java-version: 1.8
40+
java-version: 8
4141

4242
- name: Compile, test and package
4343
run: ./.github/scripts/package_artifacts.sh

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ jobs:
4444
with:
4545
ref: ${{ github.event.client_payload.ref || github.ref }}
4646

47-
- name: Set up JDK 1.8
47+
- name: Set up JDK 8
4848
uses: actions/setup-java@v4
4949
with:
5050
distribution: 'zulu'
51-
java-version: 1.8
51+
java-version: 8
5252

5353
- name: Compile, test and package
5454
run: ./.github/scripts/package_artifacts.sh
@@ -83,11 +83,11 @@ jobs:
8383
- name: Checkout source for publish
8484
uses: actions/checkout@v4
8585

86-
- name: Set up JDK 1.8
86+
- name: Set up JDK 8
8787
uses: actions/setup-java@v4
8888
with:
8989
distribution: 'zulu'
90-
java-version: 1.8
90+
java-version: 8
9191

9292
- name: Publish preflight check
9393
id: preflight

0 commit comments

Comments
 (0)