aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2024-10-18 12:43:26 +0200
committerRon Evans <[email protected]>2024-10-19 13:36:55 +0100
commit5e3c816373b831897a152e60ed858d811ead4bbf (patch)
tree657c493d4134e5862d2ad2e3b9f8001bd2d4d0f1
parent951e50c06fc617e9a45caddc62b76b88f86200a2 (diff)
downloadtinygo-5e3c816373b831897a152e60ed858d811ead4bbf.tar.gz
tinygo-5e3c816373b831897a152e60ed858d811ead4bbf.zip
ci: use macos-13 instead of macos-12 for amd64 builds
The macos-12 runner is being deprecated, so we have to switch to a new runner: https://github.com/actions/runner-images/issues/10721 The next one is macos-13, which is still amd64.
-rw-r--r--.github/workflows/build-macos.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml
index 5fef339dd..7fcf46f37 100644
--- a/.github/workflows/build-macos.yml
+++ b/.github/workflows/build-macos.yml
@@ -16,11 +16,11 @@ jobs:
name: build-macos
strategy:
matrix:
- # macos-12: amd64 (oldest supported version as of 05-02-2024)
+ # macos-13: amd64 (oldest supported version as of 18-10-2024)
# macos-14: arm64 (oldest arm64 version)
- os: [macos-12, macos-14]
+ os: [macos-13, macos-14]
include:
- - os: macos-12
+ - os: macos-13
goarch: amd64
- os: macos-14
goarch: arm64