Skip to content

Commit 6cd7ffb

Browse files
authored
Merge pull request #806 from sir-gon/renovate/major-github-artifact-actions
Update GitHub Artifact Actions (major)
2 parents b5f5366 + f954f7c commit 6cd7ffb

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/docker-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
tags: |
3636
${{ env.IMAGE_NAME }}:lint
3737
- name: "LINT: Upload artifact"
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v5
3939
with:
4040
name: ${{ env.ARTIFACT_NAME }}_lint
4141
path: /tmp/${{ env.ARTIFACT_NAME }}_lint.tar
@@ -50,7 +50,7 @@ jobs:
5050
tags: |
5151
${{ env.IMAGE_NAME }}:test
5252
- name: "TEST: Upload artifact"
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v5
5454
with:
5555
name: ${{ env.ARTIFACT_NAME }}_test
5656
path: /tmp/${{ env.ARTIFACT_NAME }}_test.tar
@@ -66,7 +66,7 @@ jobs:
6666
${{ env.IMAGE_NAME }}:latest
6767
${{ env.IMAGE_NAME }}:${{ github.sha }}
6868
- name: "PRODUCTION: Upload artifact"
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v5
7070
with:
7171
name: ${{ env.ARTIFACT_NAME }}_prod
7272
path: /tmp/${{ env.ARTIFACT_NAME }}_prod.tar
@@ -77,7 +77,7 @@ jobs:
7777
needs: build
7878
steps:
7979
- name: Download artifact
80-
uses: actions/download-artifact@v5
80+
uses: actions/download-artifact@v6
8181
with:
8282
name: ${{ env.ARTIFACT_NAME }}_lint
8383
path: /tmp/
@@ -97,7 +97,7 @@ jobs:
9797
needs: build
9898
steps:
9999
- name: Download artifact
100-
uses: actions/download-artifact@v5
100+
uses: actions/download-artifact@v6
101101
with:
102102
name: ${{ env.ARTIFACT_NAME }}_test
103103
path: /tmp/
@@ -171,7 +171,7 @@ jobs:
171171
security-events: write
172172
steps:
173173
- name: Download artifact
174-
uses: actions/download-artifact@v5
174+
uses: actions/download-artifact@v6
175175
with:
176176
name: ${{ env.ARTIFACT_NAME }}_prod
177177
path: /tmp/

.github/workflows/python-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
python3 -m coverage xml -o coverage/coverage.xml
5757
5858
- name: Upload coverage artifact
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: coverage-report
6262
path: coverage
@@ -72,7 +72,7 @@ jobs:
7272
with:
7373
fetch-depth: 0
7474
- name: Download coverage artifact
75-
uses: actions/download-artifact@v5
75+
uses: actions/download-artifact@v6
7676
with:
7777
name: coverage-report
7878
path: coverage
@@ -95,7 +95,7 @@ jobs:
9595
fetch-depth: 0
9696

9797
- name: Download coverage artifact
98-
uses: actions/download-artifact@v5
98+
uses: actions/download-artifact@v6
9999
with:
100100
name: coverage-report
101101
path: coverage

0 commit comments

Comments
 (0)