Skip to content

Commit 5b8f2f8

Browse files
Bump the all group with 2 updates
Bumps the all group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4aaee27 commit 5b8f2f8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/artifact-evaluation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212

1313
- name: Checkout repo
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
submodules: "recursive"
1717

.github/workflows/artifact.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
# repo checkout will only work if `app_token` provides access to the current repo and all its submodules.
3838
- name: Checkout repo
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040
with:
4141
submodules: "recursive"
4242
token: ${{ steps.app_token.outputs.token }}
@@ -107,7 +107,7 @@ jobs:
107107
timeout-minutes: 10
108108
steps:
109109
- name: Download artifact
110-
uses: actions/download-artifact@v4
110+
uses: actions/download-artifact@v5
111111
with:
112112
name: ${{ env.IMAGE_WORKFLOW_ARTIFACT_NAME }}
113113
path: /tmp
@@ -151,7 +151,7 @@ jobs:
151151
timeout-minutes: 20
152152
steps:
153153
- name: Download artifact
154-
uses: actions/download-artifact@v4
154+
uses: actions/download-artifact@v5
155155
with:
156156
name: ${{ env.IMAGE_WORKFLOW_ARTIFACT_NAME }}
157157
path: /tmp
@@ -171,7 +171,7 @@ jobs:
171171
packages: write
172172
steps:
173173
- name: Download artifact
174-
uses: actions/download-artifact@v4
174+
uses: actions/download-artifact@v5
175175
with:
176176
name: ${{ env.IMAGE_WORKFLOW_ARTIFACT_NAME }}
177177
path: /tmp

0 commit comments

Comments
 (0)