Update build environment for GitHub Actions from macOS 12 to 15 (#3226)

* Update build environment for GitHub Actions from macOS 12 to 15

* Fix node issue

* Add fix to other workflows
This commit is contained in:
Devin Binnie
2024-11-25 13:46:25 -05:00
committed by GitHub
parent 513a7e0a86
commit 80986355f2
7 changed files with 15 additions and 8 deletions

View File

@@ -142,7 +142,7 @@ jobs:
retention-days: 10 ## No need to keep CI builds more than 10 days
build-mac-no-dmg:
runs-on: macos-12
runs-on: macos-15
steps:
- name: ci/checkout-repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@@ -158,6 +158,7 @@ jobs:
run: |
brew install yq
jq '.mac.target=["zip"]' electron-builder.json | jq '.mac.gatekeeperAssess=false' > /tmp/electron-builder.json && cp /tmp/electron-builder.json .
sudo xcode-select -s /Applications/Xcode_16.1.app/Contents/Developer
npm ci
- name: ci/test
uses: ./.github/actions/test