From 0f4d3d7a49c7c374016c32ff2e08f5f6d8e07b84 Mon Sep 17 00:00:00 2001 From: Ian Maia Date: Thu, 12 Dec 2024 15:54:04 +0100 Subject: [PATCH] Update GitHub Actions --- .github/workflows/screenshots.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/screenshots.yml b/.github/workflows/screenshots.yml index 447c97b67..b8e9ef2a6 100644 --- a/.github/workflows/screenshots.yml +++ b/.github/workflows/screenshots.yml @@ -17,7 +17,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - uses: actions/setup-ruby@v1 with: ruby-version: '2.5.x' # Same as project's .ruby-version @@ -27,7 +27,7 @@ jobs: - name: Restore Ruby Dependency Cache id: restore-ruby-dependency-cache - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} @@ -38,7 +38,7 @@ jobs: - name: Restore CocoaPods Dependency Cache id: restore-cocoapods-dependency-cache - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: Pods key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} @@ -49,7 +49,7 @@ jobs: - name: Take all screenshots run: bundle exec fastlane take_screenshots - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v4 name: Upload all screenshots as artifacts with: name: screenshots @@ -62,7 +62,7 @@ jobs: BUNDLE_WITH=screenshots bundle install bundle exec fastlane create_promo_screenshots - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v4 name: Upload all promo screenshots as artifacts with: name: promo_screenshots