Skip to content

Commit 0a3dbb5

Browse files
chore(deps): update download + upload artifacts
1 parent 54a1c86 commit 0a3dbb5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
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@v5
13+
- uses: actions/download-artifact@v6
1414
with:
1515
name: ${{ inputs.name }}
1616
path: ${{ inputs.path }}

.github/workflows/actions/test-core-screenshot/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ runs:
6262
working-directory: ./core
6363
- name: Archive Updated Screenshots
6464
if: inputs.update == 'true' && steps.test-and-update.outputs.hasUpdatedScreenshots == 'true'
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v5
6666
with:
6767
name: updated-screenshots-${{ inputs.shard }}-${{ inputs.totalShards }}
6868
path: UpdatedScreenshots-${{ inputs.shard }}-${{ inputs.totalShards }}.zip

.github/workflows/actions/update-reference-screenshots/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
- uses: actions/setup-node@v6
1111
with:
1212
node-version: 22.x
13-
- uses: actions/download-artifact@v5
13+
- uses: actions/download-artifact@v6
1414
with:
1515
path: ./artifacts
1616
- name: Extract Archives

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

Lines changed: 1 addition & 1 deletion
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@v4
16+
- uses: actions/upload-artifact@v5
1717
with:
1818
name: ${{ inputs.name }}
1919
path: ${{ inputs.output }}

0 commit comments

Comments
 (0)