From 3bebb90319f1ba973c04046558edd697d1a03ac0 Mon Sep 17 00:00:00 2001 From: Aleksander Grzyb Date: Wed, 13 Nov 2024 13:53:22 +0100 Subject: [PATCH] use v4 of checkout action Signed-off-by: Aleksander Grzyb --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9fbdd7c..06435c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: SwiftLint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: SwiftLint uses: norio-nomura/action-swiftlint@3.1.0 with: @@ -20,7 +20,7 @@ jobs: - name: Select Xcode run: "sudo xcode-select -s /Applications/Xcode_$XCODE_VERSION.app" - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Build and Run run: rake build[release] - name: Test @@ -32,7 +32,7 @@ jobs: image: swift:5.7.1 steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Install Ruby run: apt-get update && apt-get install -y ruby zlib1g-dev - name: Build and Run