From 8dbd17d6cf53fe7900f0396318bf0011c635d1c7 Mon Sep 17 00:00:00 2001 From: Simon McLoughlin Date: Tue, 13 Feb 2024 14:03:12 +0000 Subject: [PATCH] CI: bump simulator version to see if that solves issues CI: bump dependencies --- .github/workflows/unit-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 1555b392..b2512a46 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -57,16 +57,16 @@ jobs: # run: open -a Simulator --args -CurrentDeviceUDID $(xcrun simctl list --json | ruby -e "require 'json'; puts JSON.parse(ARGF.read)['devices']['com.apple.CoreSimulator.SimRuntime.iOS-17-0'].find { |s| s['name'] == 'iPhone 15 Pro' }['udid']") - name: Test - run: xcodebuild test -scheme KukaiCoreSwift -destination "platform=iOS Simulator,OS=16.4,name=iPhone 14" -enableCodeCoverage YES -resultBundlePath "~/xcode-$NOW.xcresult" + run: xcodebuild test -scheme KukaiCoreSwift -destination "platform=iOS Simulator,OS=17.0,name=iPhone 15" -enableCodeCoverage YES -resultBundlePath "~/xcode-$NOW.xcresult" - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v2.16.2 with: category: "/language:swift" - name: Upload results if: ${{ success() || failure() }} - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v4.3.1 with: name: "results-${{ env.NOW }}.xcresult" path: "~/xcode-${{ env.NOW }}.xcresult"