From e025705dcc64058884df5977ef4f1a152e221acd Mon Sep 17 00:00:00 2001 From: Mike Nachbaur Date: Tue, 30 Apr 2024 15:05:20 -0700 Subject: [PATCH] Update Github workflows due to changes in the hosted runner images --- .github/workflows/documentation-ghpages.yaml | 4 ++-- .github/workflows/documentation.yaml | 4 ++-- .github/workflows/lint.yaml | 2 +- .github/workflows/tests.yaml | 12 ++++++------ 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/documentation-ghpages.yaml b/.github/workflows/documentation-ghpages.yaml index b206fa584..60c62f80a 100644 --- a/.github/workflows/documentation-ghpages.yaml +++ b/.github/workflows/documentation-ghpages.yaml @@ -6,7 +6,7 @@ on: - master env: - DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer NSUnbufferedIO: YES # NOTE: The DocC `generate-documentation` plugin does not handle the @@ -20,7 +20,7 @@ env: jobs: ExportToGHPages: name: Export to Github Pages - runs-on: macos-12 + runs-on: macos-latest-large steps: - uses: actions/checkout@master - name: Build Documentation diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 44f317ef6..250fb89d8 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -17,13 +17,13 @@ on: - 'Sources/**/*.md' env: - DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer NSUnbufferedIO: YES jobs: BuildDocumentation: name: Build Documentation Archives - runs-on: macos-12 + runs-on: macos-latest-large steps: - uses: actions/checkout@master - name: AuthFoundation diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index db6874b56..a0d763a31 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -20,7 +20,7 @@ on: jobs: SwiftLint: - runs-on: macos-latest + runs-on: macos-latest-large steps: - uses: actions/checkout@v1 - name: Lint code using SwiftLint diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 75d9f2401..96c11b1d6 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -21,15 +21,15 @@ on: - 'Tests/**/*.swift' env: - DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer NSUnbufferedIO: YES - iOS_DESTINATION: "platform=iOS Simulator,OS=16.2,name=iPhone 14 Pro Max" - tvOS_DESTINATION: "platform=tvOS Simulator,OS=16.1,name=Apple TV" + iOS_DESTINATION: "platform=iOS Simulator,OS=17.4,name=iPhone 15 Pro Max" + tvOS_DESTINATION: "platform=tvOS Simulator,OS=17.4,name=Apple TV" jobs: SwiftBuild: name: Swift Unit Tests - runs-on: macos-12 + runs-on: macos-latest-large timeout-minutes: 10 steps: - name: Get swift version @@ -42,7 +42,7 @@ jobs: Cocoapods: name: CocoaPods Build - runs-on: macos-12 + runs-on: macos-latest-large timeout-minutes: 10 needs: - SwiftBuild @@ -60,7 +60,7 @@ jobs: XcodeBuild: name: Xcode Unit Tests - runs-on: macos-12 + runs-on: macos-latest-large timeout-minutes: 25 steps: - uses: actions/checkout@master