Skip to content

Commit fb46c75

Browse files
authored
chore(ci): update workflows for upcoming deprecations (#1209)
1 parent 4b2ed58 commit fb46c75

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/actions/download-archive/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
runs:
1111
using: 'composite'
1212
steps:
13-
- uses: actions/download-artifact@v2
13+
- uses: actions/download-artifact@v3
1414
with:
1515
name: ${{ inputs.name }}
1616
path: ${{ inputs.path }}

.github/workflows/actions/test-e2e/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ runs:
5959
rsync -R --progress $(git diff --name-only --cached) updated-screenshots
6060
echo 'copied images'
6161
if [ -d updated-screenshots ]; then
62-
echo "::set-output name=hasUpdatedScreenshots::$(echo 'true')"
62+
echo "hasUpdatedScreenshots=$(echo 'true')" >> $GITHUB_OUTPUT
6363
cd updated-screenshots
6464
ls
6565
zip -q -r ../UpdatedScreenshots-${{ inputs.shard }}-${{ inputs.totalShards }}.zip ./

.github/workflows/actions/upload-archive/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
- name: Create Archive
1414
run: zip -q -r ${{ inputs.output }} ${{ inputs.paths }}
1515
shell: bash
16-
- uses: actions/upload-artifact@v2
16+
- uses: actions/upload-artifact@v3
1717
with:
1818
name: ${{ inputs.name }}
1919
path: ${{ inputs.output }}

.github/workflows/update-screenshots.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
needs: [test-e2e]
4141
steps:
42-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v3
4343
# Normally, we could just push with the
4444
# default GITHUB_TOKEN, but that will
4545
# not cause the build workflow

0 commit comments

Comments
 (0)