From 5103c123e3569156bb3c1b8b0ca1762784af6605 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 19 Nov 2025 14:02:19 +0000 Subject: [PATCH 1/4] Initial plan From f22bdffb52a8e6680bc6b4a43becaf27f9fa8eed Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 19 Nov 2025 14:06:18 +0000 Subject: [PATCH 2/4] Update swift.yml runs-on to use latest platforms Co-authored-by: mikelrob <3390342+mikelrob@users.noreply.github.com> --- .github/workflows/swift.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 0574402..d8ba643 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -9,14 +9,14 @@ on: jobs: lint: - runs-on: macos-10.15 + runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Lint the code run: swiftlint lint build-xc12: - runs-on: macos-10.15 + runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Select xcode @@ -25,7 +25,7 @@ jobs: run: swift test build-xc12_2-beta: - runs-on: macos-10.15 + runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Select xcode @@ -34,7 +34,7 @@ jobs: run: swift test build-linux: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run tests From 14611a6180b762edf7fa1f4fb96eab2abefa6178 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 19 Nov 2025 14:12:31 +0000 Subject: [PATCH 3/4] Remove build-xc12_2-beta job, remove xcode-select step, and rename to build-xcode-latest Co-authored-by: mikelrob <3390342+mikelrob@users.noreply.github.com> --- .github/workflows/swift.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index d8ba643..2d19c5f 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -15,21 +15,10 @@ jobs: - name: Lint the code run: swiftlint lint - build-xc12: + build-xcode-latest: runs-on: macos-latest steps: - uses: actions/checkout@v2 - - name: Select xcode - run: sudo xcode-select -s /Applications/Xcode_12.app - - name: Run tests - run: swift test - - build-xc12_2-beta: - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - name: Select xcode - run: sudo xcode-select -s /Applications/Xcode_12.2.app - name: Run tests run: swift test From d5d331cf1cf8d2874f125ae6635d6c6c5813b6ca Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 19 Nov 2025 14:29:18 +0000 Subject: [PATCH 4/4] Replace swiftlint run command with cirruslabs/swiftlint-action@v1 Co-authored-by: mikelrob <3390342+mikelrob@users.noreply.github.com> --- .github/workflows/swift.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 2d19c5f..32d1f4f 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -12,8 +12,7 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 - - name: Lint the code - run: swiftlint lint + - uses: cirruslabs/swiftlint-action@v1 build-xcode-latest: runs-on: macos-latest