Skip to content

Commit d73e77c

Browse files
Bump the all group with 2 updates (#22)
Bumps the all group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4313393 commit d73e77c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/artifact-evaluation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: docker save --platform linux/amd64 --output /tmp/image.tar ghcr.io/viperproject/diodon-artifact:latest
2929

3030
- name: Upload artifact
31-
uses: actions/upload-artifact@v4
31+
uses: actions/upload-artifact@v5
3232
with:
3333
name: ${{ env.IMAGE_WORKFLOW_ARTIFACT_NAME }}
3434
path: /tmp/image.tar
@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/checkout@v5
5050

5151
- name: Download artifact
52-
uses: actions/download-artifact@v5
52+
uses: actions/download-artifact@v6
5353
with:
5454
name: ${{ env.IMAGE_WORKFLOW_ARTIFACT_NAME }}
5555
path: /tmp

.github/workflows/artifact.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
outputs: type=docker,dest=/tmp/image.tar
4949

5050
- name: Upload artifact
51-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v5
5252
with:
5353
name: ${{ env.IMAGE_WORKFLOW_ARTIFACT_NAME }}
5454
path: /tmp/image.tar
@@ -91,7 +91,7 @@ jobs:
9191
timeout-minutes: 20
9292
steps:
9393
- name: Download artifact
94-
uses: actions/download-artifact@v5
94+
uses: actions/download-artifact@v6
9595
with:
9696
name: ${{ env.IMAGE_WORKFLOW_ARTIFACT_NAME }}
9797
path: /tmp
@@ -135,7 +135,7 @@ jobs:
135135
timeout-minutes: 30
136136
steps:
137137
- name: Download artifact
138-
uses: actions/download-artifact@v5
138+
uses: actions/download-artifact@v6
139139
with:
140140
name: ${{ env.IMAGE_WORKFLOW_ARTIFACT_NAME }}
141141
path: /tmp
@@ -155,7 +155,7 @@ jobs:
155155
packages: write
156156
steps:
157157
- name: Download artifact
158-
uses: actions/download-artifact@v5
158+
uses: actions/download-artifact@v6
159159
with:
160160
name: ${{ env.IMAGE_WORKFLOW_ARTIFACT_NAME }}
161161
path: /tmp

0 commit comments

Comments
 (0)