Skip to content

Commit 7752a0d

Browse files
Update GitHub Artifact Actions
1 parent 331d341 commit 7752a0d

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.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@v6
38+
uses: actions/upload-artifact@v7
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@v6
53+
uses: actions/upload-artifact@v7
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@v6
69+
uses: actions/upload-artifact@v7
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@v7
80+
uses: actions/download-artifact@v8
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@v7
100+
uses: actions/download-artifact@v8
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@v7
174+
uses: actions/download-artifact@v8
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@v6
59+
uses: actions/upload-artifact@v7
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@v7
75+
uses: actions/download-artifact@v8
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@v7
98+
uses: actions/download-artifact@v8
9999
with:
100100
name: coverage-report
101101
path: coverage

0 commit comments

Comments
 (0)