Skip to content

Commit c6a573d

Browse files
committed
Use latest Mac instances
1 parent 5012b97 commit c6a573d

6 files changed

+9
-9
lines changed

.github/workflows/build-xcframework-parallel-archives.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
build-xcarchives:
2222
name: Build xcarchive for ${{ matrix.configuration['human_readable_platform'] }}
23-
runs-on: macos-12
23+
runs-on: macos-latest
2424
strategy:
2525
fail-fast: false
2626
matrix:
@@ -64,7 +64,7 @@ jobs:
6464

6565
generate:
6666
name: Combine xcarchives into xcframework
67-
runs-on: macos-12
67+
runs-on: macos-latest
6868
needs: [ build-xcarchives ]
6969
env:
7070
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer

.github/workflows/build-xcframework-parallel-libldk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
build-libldks:
2222
name: Build & lipo libldk.a for ${{ matrix.configuration['human_readable_platform'] }}
23-
runs-on: macos-12
23+
runs-on: macos-latest
2424
env:
2525
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer
2626
LDK_C_BINDINGS_BASE: ${{ github.workspace }}/bindings/artifacts/ldk-c-bindings
@@ -75,7 +75,7 @@ jobs:
7575
generate-parallel:
7676
name: Build xcarchives and generate xcframework
7777
needs: [ build-libldks ]
78-
runs-on: macos-12
78+
runs-on: macos-latest
7979
env:
8080
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer
8181
LDK_C_BINDINGS_BASE: ${{ github.workspace }}/bindings/artifacts/ldk-c-bindings

.github/workflows/build-xcframework-sequential.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
generate-sequential:
2222
name: Build libldks, build xcarchives, and combine into xcframework
23-
runs-on: macos-12
23+
runs-on: macos-latest
2424
env:
2525
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer
2626
LDK_C_BINDINGS_BASE: ${{ github.workspace }}/bindings/artifacts/ldk-c-bindings

.github/workflows/direct-bindings-app-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
build:
2222
name: Build (${{ matrix.configuration['scheme'] }} - ${{ matrix.configuration['platform'] }})
23-
runs-on: macos-12
23+
runs-on: macos-latest
2424
continue-on-error: true
2525
strategy:
2626
fail-fast: false

.github/workflows/release-framework.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
generate-xcframework:
1818
name: Generate XCFramework
19-
runs-on: macos-12
19+
runs-on: macos-latest
2020
env:
2121
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer
2222
LDK_C_BINDINGS_BASE: ${{ github.workspace }}/bindings/artifacts/ldk-c-bindings

.github/workflows/test-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
create-artifact:
1313
name: Add ${{ matrix.configuration['human_readable_platform'] }} to artifact
14-
runs-on: macos-12
14+
runs-on: macos-latest
1515
strategy:
1616
fail-fast: false
1717
matrix:
@@ -39,7 +39,7 @@ jobs:
3939

4040
download-artifact:
4141
name: Download artifact
42-
runs-on: macos-12
42+
runs-on: macos-latest
4343
needs: [ create-artifact ]
4444
steps:
4545
- name: Checkout

0 commit comments

Comments
 (0)