Skip to content

Commit

Permalink
Update the java versions for the GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrowlands committed Nov 4, 2024
1 parent a6ab7d3 commit 5a0585c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4

- name: Set up JDK 11
uses: actions/setup-java@v2
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'adopt'
java-version: 17
distribution: 'temurin'
cache: 'gradle'

- name: Unit Tests
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/library_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
# Set environment variable for later use
echo "VERSION_NAME=$version_name" >> $GITHUB_ENV
- name: Set up JDK 11
uses: actions/setup-java@v2
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'adopt'
java-version: 17
distribution: 'temurin'
cache: 'gradle'

- name: Save GPG Keys
Expand Down

0 comments on commit 5a0585c

Please sign in to comment.