gradle.yml, graalvm.yml: explicitly use macos-12

GitHub has bumped macos-latest to be macos-14 (and ARM) so our tests
are currently broken. This PR is a short-term fix to restore the status quo
and makes the minimum change to fix the broken build.
This commit is contained in:
Sean Gilligan 2024-04-26 11:46:45 -07:00 committed by Andreas Schildbach
parent 7df957e4c6
commit c1bb78137c
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ jobs:
timeout-minutes: 15 timeout-minutes: 15
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macOS-latest] os: [ubuntu-latest, macOS-12]
java-version: [ '17', '21' ] java-version: [ '17', '21' ]
distribution: [ 'graalvm-community' ] distribution: [ 'graalvm-community' ]
gradle: ['8.7'] gradle: ['8.7']

View file

@ -8,7 +8,7 @@ jobs:
timeout-minutes: 15 timeout-minutes: 15
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macOS-latest, windows-latest] os: [ubuntu-latest, macOS-12, windows-latest]
java: ['11', '17', '21'] java: ['11', '17', '21']
distribution: ['temurin'] distribution: ['temurin']
gradle: ['8.7'] gradle: ['8.7']