Skip to content

Commit

Permalink
use jdk 21 in CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
baltzell committed Dec 20, 2024
1 parent 8290f06 commit e77657a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v2

- name: Set up JDK 1.8
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 21

- name: Deploy Snapshots with Maven
run: mvn -B deploy -s .maven_settings.xml -DretryFailedDeploymentCount=10
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ jobs:
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Set up JDK 1.8
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 21

- name: Get email
id: get_email
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Set up JDK 1.8
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 21

- name: Get email
id: get_email
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v3

- name: Set up JDK 1.8
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 21

- name: Build and run tests
run: |
Expand Down

0 comments on commit e77657a

Please sign in to comment.