Skip to content

Commit 1c3aed6

Browse files
⬆️ Bump actions/download-artifact from 4 to 5
Bumps [actions/download-artifact](https://github.com/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/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent cb03043 commit 1c3aed6

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ jobs:
289289

290290
- name: Download coverage artifacts
291291
if: (success() || failure()) && steps.container.outcome == 'success'
292-
uses: actions/download-artifact@v4
292+
uses: actions/download-artifact@v5
293293
with:
294294
path: .coverage
295295
pattern: coverage-*

.github/workflows/dist.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@ jobs:
132132
runs-on: ubuntu-latest
133133
if: (success() || failure()) && github.repository == 'sagemath/sage' && startsWith(github.ref, 'refs/tags/')
134134
steps:
135-
- uses: actions/download-artifact@v4
135+
- uses: actions/download-artifact@v5
136136
with:
137137
name: release_dist
138-
- uses: actions/download-artifact@v4
138+
- uses: actions/download-artifact@v5
139139
with:
140140
name: dist
141141
path: dist
@@ -250,7 +250,7 @@ jobs:
250250
with:
251251
platforms: all
252252

253-
- uses: actions/download-artifact@v4
253+
- uses: actions/download-artifact@v5
254254
with:
255255
name: dist
256256
path: dist
@@ -327,7 +327,7 @@ jobs:
327327
CAN_DEPLOY: ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' && github.event_name != 'pull_request' }}
328328
steps:
329329

330-
- uses: actions/download-artifact@v4
330+
- uses: actions/download-artifact@v5
331331
with:
332332
pattern: "*-*-*-wheels"
333333
path: wheelhouse

.github/workflows/doc-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
8888
- name: Download old doc
8989
if: github.event_name == 'pull_request'
90-
uses: actions/download-artifact@v4
90+
uses: actions/download-artifact@v5
9191
with:
9292
name: doc-develop
9393
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/doc-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Download doc
4545
id: download-doc
46-
uses: actions/download-artifact@v4
46+
uses: actions/download-artifact@v5
4747
with:
4848
name: doc
4949
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -116,7 +116,7 @@ jobs:
116116

117117
# - name: Download live doc
118118
# id: download-doc
119-
# uses: actions/download-artifact@v4
119+
# uses: actions/download-artifact@v5
120120
# with:
121121
# name: livedoc
122122
# github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
ref: ${{ inputs.sage_ref }}
142142
fetch-depth: 10000
143143
- name: Download upstream artifact
144-
uses: actions/download-artifact@v4
144+
uses: actions/download-artifact@v5
145145
with:
146146
path: upstream
147147
name: ${{ inputs.upstream_artifact }}

0 commit comments

Comments
 (0)