File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 17
17
runs-on : macos-latest
18
18
19
19
steps :
20
- - uses : actions/checkout@v1
20
+ - uses : actions/checkout@v4
21
21
- uses : actions/setup-ruby@v1
22
22
with :
23
23
ruby-version : ' 2.5.x' # Same as project's .ruby-version
27
27
28
28
- name : Restore Ruby Dependency Cache
29
29
id : restore-ruby-dependency-cache
30
- uses : actions/cache@v1
30
+ uses : actions/cache@v4
31
31
with :
32
32
path : vendor/bundle
33
33
key : ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
38
38
39
39
- name : Restore CocoaPods Dependency Cache
40
40
id : restore-cocoapods-dependency-cache
41
- uses : actions/cache@v1
41
+ uses : actions/cache@v4
42
42
with :
43
43
path : Pods
44
44
key : ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
49
49
- name : Take all screenshots
50
50
run : bundle exec fastlane take_screenshots
51
51
52
- - uses : actions/upload-artifact@v1
52
+ - uses : actions/upload-artifact@v4
53
53
name : Upload all screenshots as artifacts
54
54
with :
55
55
name : screenshots
62
62
BUNDLE_WITH=screenshots bundle install
63
63
bundle exec fastlane create_promo_screenshots
64
64
65
- - uses : actions/upload-artifact@v1
65
+ - uses : actions/upload-artifact@v4
66
66
name : Upload all promo screenshots as artifacts
67
67
with :
68
68
name : promo_screenshots
You can’t perform that action at this time.
0 commit comments