Skip to content

Commit e951acf

Browse files
committed
Github actions workflow use macos-latest instead of deprecated macos-12 builder
1 parent c1504d1 commit e951acf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-syncthing-macos-release-dmg-unnotarized-on-demand.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
jobs:
77
build-release-dmg:
88
name: Build unnotarized Release DMG
9-
runs-on: macos-12
9+
runs-on: macos-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
with:
1313
fetch-depth: 0
1414

.github/workflows/build-syncthing-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
build-debug:
1818
name: Build debug
1919
if: github.event_name == 'push' && github.ref != 'refs/heads/release' # Debug not necessary on release branch (develop is intermediate branch)
20-
runs-on: macos-12
20+
runs-on: macos-latest
2121
steps:
2222
- uses: actions/checkout@v4
2323
with:
@@ -31,7 +31,7 @@ jobs:
3131
name: Build release
3232
if: github.event_name == 'push' && github.ref == 'refs/heads/release'
3333
environment: signing
34-
runs-on: macos-12
34+
runs-on: macos-latest
3535
steps:
3636
- uses: actions/checkout@v4
3737
with:

0 commit comments

Comments
 (0)