Skip to content

Commit 0f800b2

Browse files
committed
ci: github deprecated v3 of upload and download artifact
1 parent 530ba7a commit 0f800b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
runs:
1313
using: 'composite'
1414
steps:
15-
- uses: actions/download-artifact@v3
15+
- uses: actions/download-artifact@v4
1616
with:
1717
name: ${{ inputs.name }}
1818
path: ${{ inputs. path }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
run: zip -q -r ${{ inputs.output }} ${{ inputs.paths }}
1717
shell: bash
1818

19-
- uses: actions/upload-artifact@v3
19+
- uses: actions/upload-artifact@v4
2020
with:
2121
name: ${{ inputs.name }}
2222
path: ${{ inputs.output }}

0 commit comments

Comments
 (0)