Skip to content

Commit

Permalink
update java version to 17 in workflows [release] [skip-verify]
Browse files Browse the repository at this point in the history
  • Loading branch information
Pushpavel authored May 22, 2024
1 parent 4d91688 commit c97b427
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ jobs:
- name: Fetch Sources
uses: actions/[email protected]

# Setup Java 11 environment for the next steps
# Setup Java 17.0.11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 11
distribution: corretto
java-version: 17.0.11
cache: gradle

# Run tests
Expand All @@ -104,12 +104,12 @@ jobs:
- name: Fetch Sources
uses: actions/[email protected]

# Setup Java 11 environment for the next steps
# Setup Java 17.0.11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 11
distribution: corretto
java-version: 17.0.11
cache: gradle

# Set environment variables
Expand Down Expand Up @@ -155,12 +155,12 @@ jobs:
- name: Fetch Sources
uses: actions/[email protected]

# Setup Java 11 environment for the next steps
# Setup Java 17.0.11 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 11
distribution: corretto
java-version: 17.0.11
cache: gradle

# insert Analytics secrets
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java 11 environment for the next steps
# Setup Java 17 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 11
distribution: corretto
java-version: 17.0.11
cache: gradle

# Insert Analytics secrets
Expand Down

0 comments on commit c97b427

Please sign in to comment.