Skip to content

Commit 0669546

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 4cdd703 commit 0669546

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
@@ -252,7 +252,7 @@ jobs:
252252
with:
253253
platforms: all
254254

255-
- uses: actions/download-artifact@v4
255+
- uses: actions/download-artifact@v5
256256
with:
257257
name: dist
258258
path: dist
@@ -329,7 +329,7 @@ jobs:
329329
CAN_DEPLOY: ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' && github.event_name != 'pull_request' }}
330330
steps:
331331

332-
- uses: actions/download-artifact@v4
332+
- uses: actions/download-artifact@v5
333333
with:
334334
pattern: "*-*-*-wheels"
335335
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
@@ -140,7 +140,7 @@ jobs:
140140
ref: ${{ inputs.sage_ref }}
141141
fetch-depth: 10000
142142
- name: Download upstream artifact
143-
uses: actions/download-artifact@v4
143+
uses: actions/download-artifact@v5
144144
with:
145145
path: upstream
146146
name: ${{ inputs.upstream_artifact }}

0 commit comments

Comments
 (0)