From 382913cb996dc01b5974dc6bb092b84dc00df61d Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Thu, 27 Oct 2022 00:40:01 -0700 Subject: [PATCH] Update workflows to macOS-latest and Xcode 14.1 (#421) * Update nightly.yml * Update release.yml * Update test.yml --- .github/workflows/nightly.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- .github/workflows/test.yml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9bf7a43..e18eb91 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -5,7 +5,7 @@ on: - cron: "0 8 * * *" jobs: build: - runs-on: macos-11.0 + runs-on: macOS-latest timeout-minutes: 10 steps: - uses: actions/checkout@v2 @@ -19,7 +19,7 @@ jobs: APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }} run: ./.github/scripts/signing.sh - name: Set Environment - run: sudo xcrun xcode-select -s /Applications/Xcode_13.2.1.app + run: sudo xcrun xcode-select -s /Applications/Xcode_14.1.app - name: Update Build Number env: RUN_ID: ${{ github.run_id }} @@ -50,4 +50,4 @@ jobs: uses: actions/upload-artifact@v1 with: name: Secretive.zip - path: Secretive.zip \ No newline at end of file + path: Secretive.zip diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d6beba2..7982ce9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: - '*' jobs: test: - runs-on: macos-11.0 + runs-on: macOS-latest timeout-minutes: 10 steps: - uses: actions/checkout@v1 @@ -20,14 +20,14 @@ jobs: APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }} run: ./.github/scripts/signing.sh - name: Set Environment - run: sudo xcrun xcode-select -s /Applications/Xcode_13.2.1.app + run: sudo xcrun xcode-select -s /Applications/Xcode_14.1.app - name: Test run: | pushd Sources/Packages swift test popd build: - runs-on: macos-11.0 + runs-on: macOS-latest timeout-minutes: 10 steps: - uses: actions/checkout@v2 @@ -41,7 +41,7 @@ jobs: APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }} run: ./.github/scripts/signing.sh - name: Set Environment - run: sudo xcrun xcode-select -s /Applications/Xcode_13.2.1.app + run: sudo xcrun xcode-select -s /Applications/Xcode_14.1.app - name: Update Build Number env: TAG_NAME: ${{ github.ref }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c21d0c5..ac6ad14 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,12 +3,12 @@ name: Test on: [push, pull_request] jobs: test: - runs-on: macos-11.0 + runs-on: macOS-latest timeout-minutes: 10 steps: - uses: actions/checkout@v2 - name: Set Environment - run: sudo xcrun xcode-select -s /Applications/Xcode_13.2.1.app + run: sudo xcrun xcode-select -s /Applications/Xcode_14.1.app - name: Test run: | pushd Sources/Packages