Skip to content

Commit 3f9af3b

Browse files
authored
Merge pull request #4930 from UniversityOfHelsinkiCS/renovate/major-github-artifact-actions
Update GitHub Artifact Actions (major)
2 parents 359a18b + 67ab0db commit 3f9af3b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/actions/run-tests/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ runs:
3838
CYPRESS_baseUrl: http://localhost:1337
3939

4040
- name: 'Upload video if tests fail'
41-
uses: actions/upload-artifact@v5
41+
uses: actions/upload-artifact@v6
4242
if: failure()
4343
with:
4444
name: 'Cypress videos - ${{ inputs.test_name }}'

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
env:
4242
DOCKER_BUILD_SUMMARY: false
4343
- name: 'Upload image for other jobs'
44-
uses: actions/upload-artifact@v5
44+
uses: actions/upload-artifact@v6
4545
with:
4646
name: backend-image
4747
path: /tmp/backend.tar
@@ -122,7 +122,7 @@ jobs:
122122
steps:
123123
- uses: actions/checkout@v5
124124
- name: 'Download backend image'
125-
uses: actions/download-artifact@v6
125+
uses: actions/download-artifact@v7
126126
with:
127127
name: backend-image
128128
- name: 'Load built backend image'
@@ -157,7 +157,7 @@ jobs:
157157
- 'services/backend/src/database/migrations_user/**'
158158
- '.github/workflows/test.yaml'
159159
- name: 'Download backend image'
160-
uses: actions/download-artifact@v6
160+
uses: actions/download-artifact@v7
161161
with:
162162
name: backend-image
163163
- name: 'Load built backend image'

.github/workflows/updater.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
env:
4646
DOCKER_BUILD_SUMMARY: false
4747
- name: 'Upload image for other jobs'
48-
uses: actions/upload-artifact@v5
48+
uses: actions/upload-artifact@v6
4949
with:
5050
name: updater-worker-image
5151
path: /tmp/worker.tar
@@ -66,7 +66,7 @@ jobs:
6666
env:
6767
DOCKER_BUILD_SUMMARY: false
6868
- name: 'Upload image for other jobs'
69-
uses: actions/upload-artifact@v5
69+
uses: actions/upload-artifact@v6
7070
with:
7171
name: updater-scheduler-image
7272
path: /tmp/scheduler.tar
@@ -87,7 +87,7 @@ jobs:
8787
username: ${{ secrets.TOSKAREGISTRY_USERNAME }}
8888
password: ${{ secrets.TOSKAREGISTRY_PASSWORD }}
8989
- name: 'Download built images'
90-
uses: actions/download-artifact@v6
90+
uses: actions/download-artifact@v7
9191
with:
9292
pattern: 'updater-{worker,scheduler}-image'
9393
merge-multiple: true

0 commit comments

Comments
 (0)