Skip to content

Commit

Permalink
chore: update GH actions to use temurin-22 JDK
Browse files Browse the repository at this point in the history
  • Loading branch information
kunstmusik committed Aug 4, 2024
1 parent c329938 commit be22080
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions .github/workflows/blue_ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ jobs:
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-java@v1
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '22'

- name: Build Blue
run: mvn -Pgenerate-manual,macOS clean install
Expand All @@ -22,12 +23,13 @@ jobs:
macos_x86_64:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-java@v1
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '22'

- name: Build Blue
env:
Expand All @@ -41,12 +43,13 @@ jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-java@v1
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '22'

- name: Build Blue
run: mvn -Dmaven.test.skip=true -Pgenerate-manual clean install
Expand All @@ -61,12 +64,13 @@ jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-java@v1
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '22'

- name: Build Blue
run: mvn -Pgenerate-manual clean install
Expand Down

0 comments on commit be22080

Please sign in to comment.