Skip to content

Commit

Permalink
fix: JDK version syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanedey committed Jan 30, 2024
1 parent e94ce5e commit 551adfe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
with:
ref: ${{ github.event.client_payload.ref || github.ref }}

- name: Set up JDK 1.8
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 1.8
java-version: 8

- name: Compile, test and package
run: ./.github/scripts/package_artifacts.sh
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
with:
ref: ${{ github.event.client_payload.ref || github.ref }}

- name: Set up JDK 1.8
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 1.8
java-version: 8

- name: Compile, test and package
run: ./.github/scripts/package_artifacts.sh
Expand Down Expand Up @@ -83,11 +83,11 @@ jobs:
- name: Checkout source for publish
uses: actions/checkout@v4

- name: Set up JDK 1.8
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 1.8
java-version: 8

- name: Publish preflight check
id: preflight
Expand Down

0 comments on commit 551adfe

Please sign in to comment.