From 7baab7a88a3b2cc1cfedee18fa5d632222a03c57 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Fri, 8 Nov 2024 15:26:55 +0100 Subject: [PATCH] Update github actions checkout version --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7a997ca7..96387d11 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: name: Releasing ${{ matrix.lane }} version to TestFlight runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' @@ -53,7 +53,7 @@ jobs: name: Build and notarize macOS app runs-on: macos-13 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' @@ -86,7 +86,7 @@ jobs: name: Create GitHub release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: echo "BUILD_NUMBER=$(cat Yattee.xcodeproj/project.pbxproj | grep -m 1 CURRENT_PROJECT_VERSION | cut -d' ' -f3 | sed 's/;//g')" >> $GITHUB_ENV - run: echo "VERSION_NUMBER=$(cat Yattee.xcodeproj/project.pbxproj | grep -m 1 MARKETING_VERSION | cut -d' ' -f3 | sed 's/;//g')" >> $GITHUB_ENV - uses: actions/download-artifact@v3