File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ inputs:
10
10
runs :
11
11
using : ' composite'
12
12
steps :
13
- - uses : actions/download-artifact@v2
13
+ - uses : actions/download-artifact@v3
14
14
with :
15
15
name : ${{ inputs.name }}
16
16
path : ${{ inputs.path }}
Original file line number Diff line number Diff line change 59
59
rsync -R --progress $(git diff --name-only --cached) updated-screenshots
60
60
echo 'copied images'
61
61
if [ -d updated-screenshots ]; then
62
- echo "::set-output name= hasUpdatedScreenshots:: $(echo 'true')"
62
+ echo "hasUpdatedScreenshots= $(echo 'true')" >> $GITHUB_OUTPUT
63
63
cd updated-screenshots
64
64
ls
65
65
zip -q -r ../UpdatedScreenshots-${{ inputs.shard }}-${{ inputs.totalShards }}.zip ./
Original file line number Diff line number Diff line change 13
13
- name : Create Archive
14
14
run : zip -q -r ${{ inputs.output }} ${{ inputs.paths }}
15
15
shell : bash
16
- - uses : actions/upload-artifact@v2
16
+ - uses : actions/upload-artifact@v3
17
17
with :
18
18
name : ${{ inputs.name }}
19
19
path : ${{ inputs.output }}
Original file line number Diff line number Diff line change 39
39
runs-on : ubuntu-latest
40
40
needs : [test-e2e]
41
41
steps :
42
- - uses : actions/checkout@v2
42
+ - uses : actions/checkout@v3
43
43
# Normally, we could just push with the
44
44
# default GITHUB_TOKEN, but that will
45
45
# not cause the build workflow
You can’t perform that action at this time.
0 commit comments