From 8f74f4a7a39b4d442ff7789eb36bd3a3f98f11da Mon Sep 17 00:00:00 2001 From: Stephan Schroevers Date: Sun, 29 Dec 2024 21:17:54 +0100 Subject: [PATCH 1/2] Run GitHub Actions workflows on `macos-15-large` and `windows-2025` See: - https://github.com/actions/runner-images/blob/main/README.md#available-images - https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md - https://github.com/actions/runner-images/blob/main/images/windows/Windows2025-Readme.md --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5cdd338340..936ed2c843 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,11 +14,11 @@ jobs: distribution: [ temurin ] experimental: [ false ] include: - - os: macos-14 + - os: macos-15-large jdk: 17.0.13 distribution: temurin experimental: false - - os: windows-2022 + - os: windows-2025 jdk: 17.0.13 distribution: temurin experimental: false From 2b4a9e215c366158440002109300053eb2e9e9ea Mon Sep 17 00:00:00 2001 From: Stephan Schroevers Date: Sun, 29 Dec 2024 21:25:26 +0100 Subject: [PATCH 2/2] Likely `*-large` isn't available for OSS projects --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 936ed2c843..2aa5aa2242 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: distribution: [ temurin ] experimental: [ false ] include: - - os: macos-15-large + - os: macos-15 jdk: 17.0.13 distribution: temurin experimental: false