Skip to content

Commit 322bbac

Browse files
chore: update CI runners and dependencies for macOS and Windows (#505)
BEGIN_COMMIT_OVERRIDE chore: Update CI runners and dependencies for macOS and Windows chore: Add arm64 mac builds. END_COMMIT_OVERRIDE ## Summary Updates CI infrastructure to fix broken macOS and Windows builds, and adds dual-architecture macOS release artifacts: 1. **macOS runners**: Replaced deprecated `macos-13` with `macos-15` across all 8 CI/test workflow files. `macos-13` has been fully removed from GitHub Actions and was causing all Mac jobs to be cancelled. 2. **Windows OpenSSL**: Updated the chocolatey OpenSSL package from `3.5.4` to `3.6.1`. The `3.5.4` installer was removed from slproweb.com's download server (returning 404), causing all Windows CI jobs to fail. 3. **macOS Boost pin**: Pinned Homebrew Boost to `boost@1.85` on macOS. The default Boost (1.90) on `macos-15` is incompatible with the vendored `foxy` library — Boost 1.90 removed several `boost::beast::http::field` members (`proxy_authentication_info`, `proxy_features`, `proxy_instruction`) that `foxy` references. A follow-up PR will update the vendored foxy code and remove the pin. 4. **Dual-architecture macOS release artifacts**: Release workflows (`release-please.yml`, `manual-sdk-release-artifacts.yml`) now produce **both x64 and arm64** macOS binaries: - **x64** artifacts (`mac-clang-x64-*.zip`) built on `macos-15-large` (Intel) - **arm64** artifacts (`mac-clang-arm64-*.zip`) built on `macos-15` (Apple Silicon) - The `sdk-release` composite action accepts a new `mac_artifact_arch` input (default: `x64`) to parameterize artifact filenames - Separate SLSA provenance jobs are included for each architecture (e.g. `macos-arm64-client-multiple-provenance.intoto.jsonl`) All 37 CI checks pass (Linux, Windows, macOS). ## Review & Testing Checklist for Human - [ ] **`macos-15-large` runner availability**: Release workflows now use `macos-15-large` for x64 macOS builds. This is a paid larger runner — verify your GitHub org has this runner label configured. **This cannot be validated by PR CI** since release workflows only trigger on actual releases. - [ ] **Release workflow output wiring**: The new arm64 jobs output `hashes-macos-arm64` which feeds into corresponding provenance jobs. Verify the output names match between the release and provenance jobs in both `release-please.yml` and `manual-sdk-release-artifacts.yml` — these paths are only exercised during real releases. - [ ] **Boost pin expiration**: `boost@1.85` is marked deprecated in Homebrew and will be disabled on **2026-04-05**. A follow-up PR to update the vendored `foxy` library and unpin Boost must be completed before that date. **Suggested test plan**: After merging, trigger a manual release artifact build via `manual-sdk-release-artifacts.yml` to validate that both `macos-15-large` (x64) and `macos-15` (arm64) jobs succeed and produce correctly-named artifacts with provenance. ### Notes - Requested by: @kinyoklion - [Link to Devin Session](https://app.devin.ai/sessions/20776de6453c4e8baa2e4486dfe9aaba) - Follow-up needed: update vendored `foxy` for Boost 1.90 compatibility and remove the `boost@1.85` pin before 2026-04-05. - OpenSSL 3.6.1 compatibility verified: SDK uses only stable OpenSSL APIs (SHA256/SHA1, Boost.Asio SSL, curl TLS options) with guaranteed ABI compatibility across OpenSSL 3.x minor versions. All Windows CI jobs pass. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Medium Risk** > CI-only changes, but switching macOS runners (and thus architecture/toolchain) and pinning core crypto/build dependencies can affect build outputs and release artifacts. > > **Overview** > Updates GitHub Actions CI/release workflows to run on `macos-15` instead of the removed `macos-13`, including smoketests and release artifact builds. > > Adjusts dependency installation to keep builds green on the new runners: pins macOS Homebrew Boost to `boost@1.85` and bumps the Windows Chocolatey OpenSSL package from `3.5.4` to `3.6.1`. > > Adds dual-architecture macOS release artifact support: x64 builds on `macos-15-large` and arm64 builds on `macos-15`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit d0b80a8. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent f5b55aa commit 322bbac

11 files changed

Lines changed: 161 additions & 26 deletions

File tree

.github/actions/install-boost/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ runs:
4343
if: runner.os == 'macOS'
4444
shell: bash
4545
run: |
46-
brew install boost
47-
echo "BOOST_ROOT=$(brew --prefix boost)" >> $GITHUB_OUTPUT
46+
brew install boost@1.85
47+
echo "BOOST_ROOT=$(brew --prefix boost@1.85)" >> $GITHUB_OUTPUT
4848
4949
- name: Determine root
5050
id: determine-root

.github/actions/install-openssl/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
if: runner.os == 'Windows'
3333
shell: bash
3434
run: |
35-
choco install openssl --version 3.5.4 -y --no-progress
35+
choco install openssl --version 3.6.1 -y --no-progress
3636
if [ -d "C:\Program Files\OpenSSL-Win64" ]; then
3737
echo "OPENSSL_ROOT_DIR=C:\Program Files\OpenSSL-Win64" >> $GITHUB_OUTPUT
3838
else

.github/actions/sdk-release/action.yml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ inputs:
1818
required: true
1919
sdk_cmake_target:
2020
description: 'CMake target of the sdk, e.g. launchdarkly-cpp-client.'
21+
mac_artifact_arch:
22+
description: 'Architecture label for macOS artifacts (x64 or arm64).'
23+
required: false
24+
default: 'x64'
2125
outputs:
2226
hashes-linux:
2327
description: "base64-encoded sha256 hash of linux build artifacts"
@@ -272,21 +276,21 @@ runs:
272276
OPENSSL_ROOT_DIR: ${{ steps.install-openssl.outputs.OPENSSL_ROOT_DIR }}
273277
CURL_ROOT: ${{ steps.install-curl.outputs.CURL_ROOT }}
274278

275-
- name: Archive Release Mac - AppleClang/x64/Static
279+
- name: Archive Release Mac - AppleClang/${{ inputs.mac_artifact_arch }}/Static
276280
if: runner.os == 'macOS'
277281
uses: thedoctor0/zip-release@0.7.1
278282
with:
279283
path: 'build-static/release'
280284
type: 'zip'
281-
filename: 'mac-clang-x64-static.zip'
285+
filename: 'mac-clang-${{ inputs.mac_artifact_arch }}-static.zip'
282286

283-
- name: Archive Release Mac - AppleClang/x64/Dynamic
287+
- name: Archive Release Mac - AppleClang/${{ inputs.mac_artifact_arch }}/Dynamic
284288
if: runner.os == 'macOS'
285289
uses: thedoctor0/zip-release@0.7.1
286290
with:
287291
path: 'build-dynamic/release'
288292
type: 'zip'
289-
filename: 'mac-clang-x64-dynamic.zip'
293+
filename: 'mac-clang-${{ inputs.mac_artifact_arch }}-dynamic.zip'
290294

291295
- name: Determine CURL artifact suffix for server SDK
292296
if: runner.os == 'macOS'
@@ -299,36 +303,38 @@ runs:
299303
echo "suffix=" >> $GITHUB_OUTPUT
300304
fi
301305
302-
- name: Archive Release Mac - AppleClang/x64/Static/CURL
306+
- name: Archive Release Mac - AppleClang/${{ inputs.mac_artifact_arch }}/Static/CURL
303307
if: runner.os == 'macOS'
304308
uses: thedoctor0/zip-release@0.7.1
305309
with:
306310
path: 'build-static-curl/release'
307311
type: 'zip'
308-
filename: 'mac-clang-x64-static-curl${{ steps.curl-suffix-macos.outputs.suffix }}.zip'
312+
filename: 'mac-clang-${{ inputs.mac_artifact_arch }}-static-curl${{ steps.curl-suffix-macos.outputs.suffix }}.zip'
309313

310-
- name: Archive Release Mac - AppleClang/x64/Dynamic/CURL
314+
- name: Archive Release Mac - AppleClang/${{ inputs.mac_artifact_arch }}/Dynamic/CURL
311315
if: runner.os == 'macOS'
312316
uses: thedoctor0/zip-release@0.7.1
313317
with:
314318
path: 'build-dynamic-curl/release'
315319
type: 'zip'
316-
filename: 'mac-clang-x64-dynamic-curl${{ steps.curl-suffix-macos.outputs.suffix }}.zip'
320+
filename: 'mac-clang-${{ inputs.mac_artifact_arch }}-dynamic-curl${{ steps.curl-suffix-macos.outputs.suffix }}.zip'
317321

318322
- name: Hash Mac Build Artifacts for provenance
319323
if: runner.os == 'macOS'
320324
shell: bash
321325
id: hash-macos
322326
run: |
323327
CURL_SUFFIX="${{ steps.curl-suffix-macos.outputs.suffix }}"
324-
echo "hashes-macos=$(shasum -a 256 mac-clang-x64-static.zip mac-clang-x64-dynamic.zip mac-clang-x64-static-curl${CURL_SUFFIX}.zip mac-clang-x64-dynamic-curl${CURL_SUFFIX}.zip | base64 -b 0)" >> "$GITHUB_OUTPUT"
328+
ARCH="${{ inputs.mac_artifact_arch }}"
329+
echo "hashes-macos=$(shasum -a 256 mac-clang-${ARCH}-static.zip mac-clang-${ARCH}-dynamic.zip mac-clang-${ARCH}-static-curl${CURL_SUFFIX}.zip mac-clang-${ARCH}-dynamic-curl${CURL_SUFFIX}.zip | base64 -b 0)" >> "$GITHUB_OUTPUT"
325330
326331
- name: Upload Mac Build Artifacts
327332
if: runner.os == 'macOS'
328333
shell: bash
329334
run: |
330335
ls
331336
CURL_SUFFIX="${{ steps.curl-suffix-macos.outputs.suffix }}"
332-
gh release upload ${{ inputs.tag_name }} mac-clang-x64-static.zip mac-clang-x64-dynamic.zip mac-clang-x64-static-curl${CURL_SUFFIX}.zip mac-clang-x64-dynamic-curl${CURL_SUFFIX}.zip --clobber
337+
ARCH="${{ inputs.mac_artifact_arch }}"
338+
gh release upload ${{ inputs.tag_name }} mac-clang-${ARCH}-static.zip mac-clang-${ARCH}-dynamic.zip mac-clang-${ARCH}-static-curl${CURL_SUFFIX}.zip mac-clang-${ARCH}-dynamic-curl${CURL_SUFFIX}.zip --clobber
333339
env:
334340
GH_TOKEN: ${{ inputs.github_token }}

.github/workflows/client.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
simulate_release: true
8181

8282
build-test-client-mac:
83-
runs-on: macos-13
83+
runs-on: macos-15
8484
steps:
8585
# https://github.com/actions/checkout/releases/tag/v4.3.0
8686
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
@@ -91,7 +91,7 @@ jobs:
9191
simulate_release: true
9292

9393
build-test-client-mac-curl:
94-
runs-on: macos-13
94+
runs-on: macos-15
9595
steps:
9696
# https://github.com/actions/checkout/releases/tag/v4.3.0
9797
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955

.github/workflows/cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
cmake_extra_args: '-DLD_CURL_NETWORKING=ON'
4141

4242
test-macos:
43-
runs-on: macos-13
43+
runs-on: macos-15
4444
steps:
4545
# https://github.com/actions/checkout/releases/tag/v4.3.0
4646
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
@@ -49,7 +49,7 @@ jobs:
4949
platform_version: '12'
5050

5151
test-macos-curl:
52-
runs-on: macos-13
52+
runs-on: macos-15
5353
steps:
5454
# https://github.com/actions/checkout/releases/tag/v4.3.0
5555
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955

.github/workflows/hello-apps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
smoketest:
1616
strategy:
1717
matrix:
18-
os: [ "ubuntu-22.04", "macos-13", "windows-2022" ]
18+
os: [ "ubuntu-22.04", "macos-15", "windows-2022" ]
1919
fail-fast: false
2020
runs-on: ${{ matrix.os }}
2121
steps:

.github/workflows/manual-sdk-release-artifacts.yml

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
matrix:
4040
# Each of the platforms for which release-artifacts need generated.
41-
os: [ ubuntu-22.04, windows-2022, macos-13 ]
41+
os: [ ubuntu-22.04, windows-2022, macos-15-large ]
4242
runs-on: ${{ matrix.os }}
4343
outputs:
4444
hashes-linux: ${{ steps.release-sdk.outputs.hashes-linux }}
@@ -58,6 +58,27 @@ jobs:
5858
github_token: ${{secrets.GITHUB_TOKEN}}
5959
sdk_path: ${{ needs.split-input.outputs.sdk_path}}
6060
sdk_cmake_target: ${{ needs.split-input.outputs.sdk_cmake_target}}
61+
62+
release-sdk-mac-arm64:
63+
needs: split-input
64+
runs-on: macos-15
65+
outputs:
66+
hashes-macos-arm64: ${{ steps.release-sdk.outputs.hashes-macos }}
67+
steps:
68+
# https://github.com/actions/checkout/releases/tag/v4.3.0
69+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
70+
with:
71+
ref: ${{ inputs.tag }}
72+
- id: release-sdk
73+
name: Full release of ${{ needs.split-input.outputs.sdk_path }} (macOS arm64)
74+
uses: ./.github/actions/sdk-release
75+
with:
76+
tag_name: ${{ inputs.tag }}
77+
github_token: ${{secrets.GITHUB_TOKEN}}
78+
sdk_path: ${{ needs.split-input.outputs.sdk_path}}
79+
sdk_cmake_target: ${{ needs.split-input.outputs.sdk_cmake_target}}
80+
mac_artifact_arch: 'arm64'
81+
6182
release-sdk-provenance:
6283
needs: [ 'release-sdk' ]
6384
strategy:
@@ -74,3 +95,16 @@ jobs:
7495
upload-assets: true
7596
upload-tag-name: ${{ inputs.tag }}
7697
provenance-name: ${{ format('{0}-multiple-provenance.intoto.jsonl', matrix.os) }}
98+
99+
release-sdk-mac-arm64-provenance:
100+
needs: [ 'release-sdk-mac-arm64' ]
101+
permissions:
102+
actions: read
103+
id-token: write
104+
contents: write
105+
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v2.1.0
106+
with:
107+
base64-subjects: "${{ needs.release-sdk-mac-arm64.outputs.hashes-macos-arm64 }}"
108+
upload-assets: true
109+
upload-tag-name: ${{ inputs.tag }}
110+
provenance-name: 'macos-arm64-multiple-provenance.intoto.jsonl'

.github/workflows/release-please.yml

Lines changed: 98 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
# Each of the platforms for which release-artifacts need generated.
30-
os: [ ubuntu-22.04, windows-2022, macos-13 ]
30+
os: [ ubuntu-22.04, windows-2022, macos-15-large ]
3131
runs-on: ${{ matrix.os }}
3232
needs: [ 'release-please' ]
3333
if: ${{ needs.release-please.outputs.package-client-released == 'true'}}
@@ -48,11 +48,30 @@ jobs:
4848
sdk_path: 'libs/client-sdk'
4949
sdk_cmake_target: 'launchdarkly-cpp-client'
5050

51+
release-client-mac-arm64:
52+
runs-on: macos-15
53+
needs: [ 'release-please' ]
54+
if: ${{ needs.release-please.outputs.package-client-released == 'true'}}
55+
outputs:
56+
hashes-macos-arm64: ${{ steps.release-client.outputs.hashes-macos }}
57+
steps:
58+
# https://github.com/actions/checkout/releases/tag/v4.3.0
59+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
60+
- id: release-client
61+
name: Full release of libs/client-sdk (macOS arm64)
62+
uses: ./.github/actions/sdk-release
63+
with:
64+
tag_name: ${{ needs.release-please.outputs.package-client-tag }}
65+
github_token: ${{secrets.GITHUB_TOKEN}}
66+
sdk_path: 'libs/client-sdk'
67+
sdk_cmake_target: 'launchdarkly-cpp-client'
68+
mac_artifact_arch: 'arm64'
69+
5170
release-server:
5271
strategy:
5372
matrix:
5473
# Each of the platforms for which release-artifacts need generated.
55-
os: [ ubuntu-22.04, windows-2022, macos-13 ]
74+
os: [ ubuntu-22.04, windows-2022, macos-15-large ]
5675
runs-on: ${{ matrix.os }}
5776
needs: [ 'release-please' ]
5877
if: ${{ needs.release-please.outputs.package-server-released == 'true'}}
@@ -73,11 +92,30 @@ jobs:
7392
sdk_path: 'libs/server-sdk'
7493
sdk_cmake_target: 'launchdarkly-cpp-server'
7594

95+
release-server-mac-arm64:
96+
runs-on: macos-15
97+
needs: [ 'release-please' ]
98+
if: ${{ needs.release-please.outputs.package-server-released == 'true'}}
99+
outputs:
100+
hashes-macos-arm64: ${{ steps.release-server.outputs.hashes-macos }}
101+
steps:
102+
# https://github.com/actions/checkout/releases/tag/v4.3.0
103+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
104+
- id: release-server
105+
name: Full release of libs/server-sdk (macOS arm64)
106+
uses: ./.github/actions/sdk-release
107+
with:
108+
tag_name: ${{ needs.release-please.outputs.package-server-tag }}
109+
github_token: ${{secrets.GITHUB_TOKEN}}
110+
sdk_path: 'libs/server-sdk'
111+
sdk_cmake_target: 'launchdarkly-cpp-server'
112+
mac_artifact_arch: 'arm64'
113+
76114
release-server-redis:
77115
strategy:
78116
matrix:
79117
# Each of the platforms for which release-artifacts need generated.
80-
os: [ ubuntu-22.04, windows-2022, macos-13 ]
118+
os: [ ubuntu-22.04, windows-2022, macos-15-large ]
81119
runs-on: ${{ matrix.os }}
82120
needs: [ 'release-please' ]
83121
if: ${{ needs.release-please.outputs.package-server-redis-released == 'true'}}
@@ -98,6 +136,25 @@ jobs:
98136
sdk_path: 'libs/server-sdk-redis-source'
99137
sdk_cmake_target: 'launchdarkly-cpp-server-redis-source'
100138

139+
release-server-redis-mac-arm64:
140+
runs-on: macos-15
141+
needs: [ 'release-please' ]
142+
if: ${{ needs.release-please.outputs.package-server-redis-released == 'true'}}
143+
outputs:
144+
hashes-macos-arm64: ${{ steps.release-server-redis.outputs.hashes-macos }}
145+
steps:
146+
# https://github.com/actions/checkout/releases/tag/v4.3.0
147+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
148+
- id: release-server-redis
149+
name: Full release of libs/server-sdk-redis-source (macOS arm64)
150+
uses: ./.github/actions/sdk-release
151+
with:
152+
tag_name: ${{ needs.release-please.outputs.package-server-redis-tag }}
153+
github_token: ${{secrets.GITHUB_TOKEN}}
154+
sdk_path: 'libs/server-sdk-redis-source'
155+
sdk_cmake_target: 'launchdarkly-cpp-server-redis-source'
156+
mac_artifact_arch: 'arm64'
157+
101158
release-client-provenance:
102159
needs: [ 'release-please', 'release-client' ]
103160
strategy:
@@ -115,6 +172,19 @@ jobs:
115172
upload-tag-name: ${{ needs.release-please.outputs.package-client-tag }}
116173
provenance-name: ${{ format('{0}-client-multiple-provenance.intoto.jsonl', matrix.os) }}
117174

175+
release-client-mac-arm64-provenance:
176+
needs: [ 'release-please', 'release-client-mac-arm64' ]
177+
permissions:
178+
actions: read
179+
id-token: write
180+
contents: write
181+
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v2.1.0
182+
with:
183+
base64-subjects: "${{ needs.release-client-mac-arm64.outputs.hashes-macos-arm64 }}"
184+
upload-assets: true
185+
upload-tag-name: ${{ needs.release-please.outputs.package-client-tag }}
186+
provenance-name: 'macos-arm64-client-multiple-provenance.intoto.jsonl'
187+
118188
release-server-provenance:
119189
needs: [ 'release-please', 'release-server' ]
120190
strategy:
@@ -132,6 +202,19 @@ jobs:
132202
upload-tag-name: ${{ needs.release-please.outputs.package-server-tag }}
133203
provenance-name: ${{ format('{0}-server-multiple-provenance.intoto.jsonl', matrix.os) }}
134204

205+
release-server-mac-arm64-provenance:
206+
needs: [ 'release-please', 'release-server-mac-arm64' ]
207+
permissions:
208+
actions: read
209+
id-token: write
210+
contents: write
211+
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v2.1.0
212+
with:
213+
base64-subjects: "${{ needs.release-server-mac-arm64.outputs.hashes-macos-arm64 }}"
214+
upload-assets: true
215+
upload-tag-name: ${{ needs.release-please.outputs.package-server-tag }}
216+
provenance-name: 'macos-arm64-server-multiple-provenance.intoto.jsonl'
217+
135218
release-server-redis-provenance:
136219
needs: [ 'release-please', 'release-server-redis' ]
137220
strategy:
@@ -149,3 +232,15 @@ jobs:
149232
upload-tag-name: ${{ needs.release-please.outputs.package-server-redis-tag }}
150233
provenance-name: ${{ format('{0}-server-redis-multiple-provenance.intoto.jsonl', matrix.os) }}
151234

235+
release-server-redis-mac-arm64-provenance:
236+
needs: [ 'release-please', 'release-server-redis-mac-arm64' ]
237+
permissions:
238+
actions: read
239+
id-token: write
240+
contents: write
241+
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v2.1.0
242+
with:
243+
base64-subjects: "${{ needs.release-server-redis-mac-arm64.outputs.hashes-macos-arm64 }}"
244+
upload-assets: true
245+
upload-tag-name: ${{ needs.release-please.outputs.package-server-redis-tag }}
246+
provenance-name: 'macos-arm64-server-redis-multiple-provenance.intoto.jsonl'

.github/workflows/server-otel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# We don't produce release artifacts.
2727
simulate_release: false
2828
build-otel-mac:
29-
runs-on: macos-13
29+
runs-on: macos-15
3030
steps:
3131
# https://github.com/actions/checkout/releases/tag/v4.3.0
3232
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955

.github/workflows/server-redis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cmake_target: launchdarkly-cpp-server-redis-source
3030
simulate_release: true
3131
build-redis-mac:
32-
runs-on: macos-13
32+
runs-on: macos-15
3333
steps:
3434
# https://github.com/actions/checkout/releases/tag/v4.3.0
3535
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955

0 commit comments

Comments
 (0)