From 25a16af0e28723c2fe30839df85dc47bc9fe658d Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Wed, 8 May 2024 10:27:07 +0200 Subject: [PATCH] Use macos-12 instead of macos-latest --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45fc1fd..1ff50f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: name: Build and Test strategy: matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-12] scala: [2.12.19, 2.13.13, 3.3.3] java: [temurin@8, temurin@11, temurin@17, temurin@21] runs-on: ${{ matrix.os }} diff --git a/build.sbt b/build.sbt index f3471cc..9b4912a 100644 --- a/build.sbt +++ b/build.sbt @@ -198,7 +198,7 @@ ThisBuild / githubWorkflowPublishTargetBranches := RefPredicate.Equals(Ref.Branch("main")) ) -ThisBuild / githubWorkflowOSes := Seq("ubuntu-latest", "macos-latest") +ThisBuild / githubWorkflowOSes := Seq("ubuntu-latest", "macos-12") ThisBuild / githubWorkflowJavaVersions := List( JavaSpec.temurin("8"),