Skip to content

Commit

Permalink
ci: upgrade mac executors to macos-13 (#468)
Browse files Browse the repository at this point in the history
MacOS 12 executors are deprecated and will cease operation in December.
Github randomly failed some jobs today during a "brownout" to let us
know about this.

Very effective I must say.
  • Loading branch information
cwaldren-ld authored Nov 19, 2024
1 parent ad91106 commit b7ccd28
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
cmake_target: launchdarkly-cpp-client
simulate_release: true
build-test-client-mac:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
platform_version: '22.04'

test-macos:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/cmake-test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hello-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
smoketest:
strategy:
matrix:
os: [ "ubuntu-22.04", "macos-12", "windows-2022" ]
os: [ "ubuntu-22.04", "macos-13", "windows-2022" ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-sdk-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
# Each of the platforms for which release-artifacts need generated.
os: [ ubuntu-latest, windows-2022, macos-12 ]
os: [ ubuntu-latest, windows-2022, macos-13 ]
runs-on: ${{ matrix.os }}
outputs:
hashes-linux: ${{ steps.release-sdk.outputs.hashes-linux }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
# Each of the platforms for which release-artifacts need generated.
os: [ ubuntu-latest, windows-2022, macos-12 ]
os: [ ubuntu-latest, windows-2022, macos-13 ]
runs-on: ${{ matrix.os }}
needs: [ 'release-please' ]
if: ${{ needs.release-please.outputs.package-client-released == 'true'}}
Expand All @@ -48,7 +48,7 @@ jobs:
strategy:
matrix:
# Each of the platforms for which release-artifacts need generated.
os: [ ubuntu-latest, windows-2022, macos-12 ]
os: [ ubuntu-latest, windows-2022, macos-13 ]
runs-on: ${{ matrix.os }}
needs: [ 'release-please' ]
if: ${{ needs.release-please.outputs.package-server-released == 'true'}}
Expand All @@ -72,7 +72,7 @@ jobs:
strategy:
matrix:
# Each of the platforms for which release-artifacts need generated.
os: [ ubuntu-latest, windows-2022, macos-12 ]
os: [ ubuntu-latest, windows-2022, macos-13 ]
runs-on: ${{ matrix.os }}
needs: [ 'release-please' ]
if: ${{ needs.release-please.outputs.package-server-redis-released == 'true'}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cmake_target: launchdarkly-cpp-server-redis-source
simulate_release: true
build-redis-mac:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
cmake_target: launchdarkly-cpp-server
simulate_release: true
build-test-server-mac:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/ci
Expand Down

0 comments on commit b7ccd28

Please sign in to comment.