Skip to content

Commit

Permalink
Update OS configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Oct 9, 2024
1 parent 1250fac commit 2f60416
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions: read-all
jobs:
hotspot-ea:
name: HotSpot (EA)
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [ extended ]
continue-on-error: true
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04, macos-12, windows-2022 ]
os: [ ubuntu-24.04, macos-14, windows-2022 ]
java: [ 8, 11, 17, 21 ]
runs-on: ${{ matrix.os }}
needs: [ extended ]
Expand All @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04, macos-12, windows-2022 ]
os: [ ubuntu-24.04, macos-14, windows-2022 ]
java: [ 8, 11 ]
runs-on: ${{ matrix.os }}
needs: [ extended ]
Expand All @@ -69,7 +69,7 @@ jobs:
fail-fast: false
matrix:
java: [ 9, 10, 12, 13, 14, 15, 16, 18, 19, 20, 22 ]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [ extended ]
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
Expand All @@ -86,7 +86,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04, windows-2022 ]
os: [ ubuntu-24.04, windows-2022 ]
java: [ 8 ]
runs-on: ${{ matrix.os }}
needs: [ extended ]
Expand All @@ -106,7 +106,7 @@ jobs:
fail-fast: false
matrix:
java: [ 6, 7 ]
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [ extended ]
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
Expand All @@ -124,7 +124,7 @@ jobs:
run: ./mvnw -s .mvn/nossl.settings.xml verify -Pintegration -Pjava${{ matrix.java }}
extended:
name: Extended build
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
if: github.event_name == 'push'
steps:
- uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # V2.8.1
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
run: ./mvnw jacoco:prepare-agent verify jacoco:report coveralls:report -DrepoToken=${{ secrets.coveralls }} -Pextras -Pchecks -Panalysis -Pintegration -Pchecksum-enforce
release:
name: Release new version
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [ extended, hotspot-ea, hotspot-supported, j9-supported, hotspot-unsupported, hotspot-32, hotspot-legacy ]
if: github.event_name == 'push' && startsWith(github.event.head_commit.message, '[release]')
permissions:
Expand Down

0 comments on commit 2f60416

Please sign in to comment.