Skip to content

Commit 984a7d0

Browse files
authored
Merge pull request #5445 from spidernet-io/dependabot/github_actions/actions/download-artifact-7.0.0
build(deps): bump actions/download-artifact from 4.2.1 to 7.0.0
2 parents fc87149 + 4ee31f8 commit 984a7d0

11 files changed

+15
-15
lines changed

.github/workflows/auto-upgrade-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ jobs:
210210
211211
- name: Download old spiderpool-agent and spiderpool-controller image with tag ${{ needs.call_build_old_ci_image.outputs.imageTag }}
212212
if: ${{ needs.get_ref.outputs.build_old_image_tag == 'true' }}
213-
uses: actions/download-artifact@v4.2.1
213+
uses: actions/download-artifact@v7.0.0
214214
with:
215215
path: test/.download
216216
merge-multiple: true
@@ -298,7 +298,7 @@ jobs:
298298
cp -r /tmp/config ${{ env.KUBECONFIG_PATH }}/${{ env.E2E_CLUSTER_NAME }}/.kube/config
299299
300300
- name: Download new spiderpool-agent and spiderpool-controller image with tag ${{ needs.call_build_new_ci_image.outputs.imageTag }}
301-
uses: actions/download-artifact@v4.2.1
301+
uses: actions/download-artifact@v7.0.0
302302
with:
303303
path: test/.download
304304
pattern: new-image-tar-spiderpool-*-${{ needs.call_build_new_ci_image.outputs.imageTag }}

.github/workflows/auto-version-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,13 @@ jobs:
137137
runs-on: ubuntu-latest
138138
steps:
139139
- name: Download Chart Artifact
140-
uses: actions/download-artifact@v4.2.1
140+
uses: actions/download-artifact@v7.0.0
141141
with:
142142
name: ${{ needs.release-chart.outputs.artifact }}_${{ needs.get-tag.outputs.tag }}
143143
path: chart-package/
144144

145145
- name: Download Changelog Artifact
146-
uses: actions/download-artifact@v4.2.1
146+
uses: actions/download-artifact@v7.0.0
147147
with:
148148
name: ${{ needs.release-changelog.outputs.artifact }}_${{ needs.get-tag.outputs.tag }}
149149
path: changelog-result/

.github/workflows/build-image-base.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
mkdir -p image-digest/
149149
150150
- name: Download digests of all images built
151-
uses: actions/download-artifact@v4.2.1
151+
uses: actions/download-artifact@v7.0.0
152152
with:
153153
path: image-digest/
154154
pattern: image-digest-${{ env.IMAGE_NAME }}-${{ env.tag }}

.github/workflows/build-image-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ jobs:
301301
mkdir -p image-digest/
302302
303303
- name: Download digests of all images built
304-
uses: actions/download-artifact@v4.2.1
304+
uses: actions/download-artifact@v7.0.0
305305
with:
306306
pattern: image-digest-spiderpool-*-${{ needs.build_and_push_prs.outputs.imageTag }}
307307
path: image-digest/

.github/workflows/build-image-plugins.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
mkdir -p image-digest/
149149
150150
- name: Download digests of all images built
151-
uses: actions/download-artifact@v4.2.1
151+
uses: actions/download-artifact@v7.0.0
152152
with:
153153
path: image-digest/
154154
pattern: image-digest-${{ env.IMAGE_NAME }}-*

.github/workflows/call-release-changelog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
ref: ${{ env.DEST_BRANCH }}
127127

128128
- name: Download Artifact
129-
uses: actions/download-artifact@v4.2.1
129+
uses: actions/download-artifact@v7.0.0
130130
with:
131131
pattern: changelog_artifact_${{ needs.generate_changelog.outputs.dest_tag }}
132132
path: ${{ env.DEST_DIRECTORY }}

.github/workflows/call-release-chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
persist-credentials: "true"
116116

117117
- name: Download Artifact
118-
uses: actions/download-artifact@v4.2.1
118+
uses: actions/download-artifact@v7.0.0
119119
with:
120120
pattern: chart_package_artifact_${{ needs.get_ref.outputs.ref }}
121121
path: charts/

.github/workflows/call-release-doc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
fetch-depth: 0
153153

154154
- name: Download Artifact
155-
uses: actions/download-artifact@v4.2.1
155+
uses: actions/download-artifact@v7.0.0
156156
with:
157157
pattern: website_package_artifact_${{ needs.release_doc.outputs.ref }}
158158
path: ./

.github/workflows/call-update-githubpages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
mkdir ${{ env.DEST_DIRECTORY }}/charts
4646
4747
- name: Download Website Artifact
48-
uses: actions/download-artifact@v4.2.1
48+
uses: actions/download-artifact@v7.0.0
4949
with:
5050
name: ${{ inputs.site_artifact_name }}
5151
path: ${{ env.DEST_DIRECTORY }}
5252

5353
- name: Download Chart Artifact
54-
uses: actions/download-artifact@v4.2.1
54+
uses: actions/download-artifact@v7.0.0
5555
with:
5656
name: ${{ inputs.chart_artifact_name }}
5757
path: ${{ env.DEST_DIRECTORY }}/charts

.github/workflows/e2e-init.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ jobs:
104104
bash ./test/scripts/install-tools.sh
105105
106106
- name: Download spiderpool-agent image
107-
uses: actions/download-artifact@v4.2.1
107+
uses: actions/download-artifact@v7.0.0
108108
with:
109109
path: test/.download
110110
pattern: image-tar-spiderpool-agent-${{ inputs.ref }}
111111
merge-multiple: true
112112

113113
- name: Download spiderpool-controller image
114-
uses: actions/download-artifact@v4.2.1
114+
uses: actions/download-artifact@v7.0.0
115115
with:
116116
path: test/.download
117117
pattern: image-tar-spiderpool-controller-${{ inputs.ref }}

0 commit comments

Comments
 (0)