Skip to content

Commit

Permalink
update java version in CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
y-polek committed Jun 2, 2024
1 parent f8449e0 commit 172ea00
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ jobs:
- name: Fetch Sources
uses: actions/checkout@v2

# 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
java-version: 17
cache: gradle

# Cache Gradle dependencies
Expand Down Expand Up @@ -90,12 +90,12 @@ jobs:
- name: Fetch Sources
uses: actions/checkout@v2

# 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
java-version: 17
cache: gradle

# Cache Gradle dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,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
java-version: 17
cache: gradle

# Publish the plugin to the Marketplace
Expand All @@ -47,12 +47,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
java-version: 17
cache: gradle

# Publish the plugin to the Marketplace
Expand Down

0 comments on commit 172ea00

Please sign in to comment.