Skip to content

Commit

Permalink
Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
iangmaia committed Dec 12, 2024
1 parent 157c4c7 commit 0f4d3d7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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') }}
Expand All @@ -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') }}
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 0f4d3d7

Please sign in to comment.