Skip to content

Commit

Permalink
chore: deploy using JDK 17
Browse files Browse the repository at this point in the history
  • Loading branch information
guicamest committed Sep 28, 2023
1 parent a42b989 commit 74ef662
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
"branch" : "${{ github.head_ref || github.ref_name }}"
}
const is_deployable = data.matrix == "ubuntu-latest" && data.jdk == "11" && data.is_fork == "false" && data.branch == "master" && data.is_snapshot == true
const is_deployable = data.matrix == "ubuntu-latest" && data.jdk == "17" && data.is_fork == "false" && data.branch == "master" && data.is_snapshot == true
console.log("Data: ", data);
console.log("Is deployable: " + is_deployable);
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/command-deploy-pr-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: "temurin"

- name: Setup Gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: "temurin"

- name: Setup Gradle
Expand Down

0 comments on commit 74ef662

Please sign in to comment.