From dc03158f67c019352a0462a4d3a3e9a2e7762bb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Tro=C3=ABng?= Date: Fri, 22 Sep 2023 14:06:21 +0200 Subject: [PATCH] Changing checkout from node12 version Node12 is deprecated and github has moved from it to node16 for running github actions. It seems that this means that actions/chekout@v2 is deprecated for actions/checkout@v3, hence this change should fix all the tests. --- .github/workflows/swift.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 623c4e40..cf76a33a 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -6,6 +6,6 @@ jobs: build: runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Test on emulator run: xcodebuild clean test -disablePackageRepositoryCache -sdk iphonesimulator -project Authenticator.xcodeproj -scheme Authenticator -destination "platform=iOS Simulator,OS=latest,name=iPhone 11" | xcpretty --test --color && exit ${PIPESTATUS[0]}