Skip to content

Commit 5324ef8

Browse files
Build(deps): bump actions/download-artifact from 4 to 6
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 36cde5b commit 5324ef8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/example_reusable-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
with:
175175
fetch-depth: 1
176176
- name: Download All Matrix Artifacts
177-
uses: actions/download-artifact@v4
177+
uses: actions/download-artifact@v6
178178
with:
179179
path: build-artifacts
180180
merge-multiple: true

.github/workflows/reusable_deploy-artifacts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
jf rt ping
109109
110110
- name: Download artifacts
111-
uses: actions/download-artifact@v4
111+
uses: actions/download-artifact@v6
112112
with:
113113
name: ${{ inputs.gh-artifact-name }}
114114
path: ./build-artifacts

.github/workflows/reusable_sign-artifacts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
CHECKOUT_REF: ${{ inputs.gh-workflows-ref }}
7373
steps:
7474
- name: Download Unsigned Artifacts
75-
uses: actions/download-artifact@v4
75+
uses: actions/download-artifact@v6
7676
with:
7777
name: ${{ inputs.gh-unsigned-artifacts }}
7878
path: unsigned-artifacts

.github/workflows/test_sign-artifacts-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
dotnet-version: 8.x
5050
- name: Download Signed Artifacts
51-
uses: actions/download-artifact@v4
51+
uses: actions/download-artifact@v6
5252
with:
5353
name: ${{ needs.test-sign-workflow.outputs.gh-artifact-name }}
5454
path: signed
@@ -76,7 +76,7 @@ jobs:
7676
- name: Checkout
7777
uses: actions/checkout@v5
7878
- name: Download Test Fixtures
79-
uses: actions/download-artifact@v4
79+
uses: actions/download-artifact@v6
8080
with:
8181
name: test-fixtures
8282
path: test-fixtures

0 commit comments

Comments
 (0)