From c1bb78137c2ebd9b576b5eb482c67545c0f94bd2 Mon Sep 17 00:00:00 2001 From: Sean Gilligan Date: Fri, 26 Apr 2024 11:46:45 -0700 Subject: [PATCH] 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. --- .github/workflows/graalvm.yml | 2 +- .github/workflows/gradle.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/graalvm.yml b/.github/workflows/graalvm.yml index 6b627f8fd..247452551 100644 --- a/.github/workflows/graalvm.yml +++ b/.github/workflows/graalvm.yml @@ -8,7 +8,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - os: [ubuntu-latest, macOS-latest] + os: [ubuntu-latest, macOS-12] java-version: [ '17', '21' ] distribution: [ 'graalvm-community' ] gradle: ['8.7'] diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 74f36456e..4f3896d62 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -8,7 +8,7 @@ jobs: timeout-minutes: 15 strategy: matrix: - os: [ubuntu-latest, macOS-latest, windows-latest] + os: [ubuntu-latest, macOS-12, windows-latest] java: ['11', '17', '21'] distribution: ['temurin'] gradle: ['8.7']