diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6b7691a817..2a3f981fa40 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -289,7 +289,7 @@ jobs: - name: Download coverage artifacts if: (success() || failure()) && steps.container.outcome == 'success' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: .coverage pattern: coverage-* diff --git a/.github/workflows/dist.yml b/.github/workflows/dist.yml index f8ad72c19b5..42f1373b040 100644 --- a/.github/workflows/dist.yml +++ b/.github/workflows/dist.yml @@ -132,10 +132,10 @@ jobs: runs-on: ubuntu-latest if: (success() || failure()) && github.repository == 'sagemath/sage' && startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: release_dist - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: dist path: dist @@ -250,7 +250,7 @@ jobs: with: platforms: all - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: dist path: dist @@ -327,7 +327,7 @@ jobs: CAN_DEPLOY: ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' && github.event_name != 'pull_request' }} steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: pattern: "*-*-*-wheels" path: wheelhouse diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml index c56e9a06346..3801682e61d 100644 --- a/.github/workflows/doc-build.yml +++ b/.github/workflows/doc-build.yml @@ -87,7 +87,7 @@ jobs: - name: Download old doc if: github.event_name == 'pull_request' - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: doc-develop github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/doc-publish.yml b/.github/workflows/doc-publish.yml index 025c36a577b..c695ba34497 100644 --- a/.github/workflows/doc-publish.yml +++ b/.github/workflows/doc-publish.yml @@ -43,7 +43,7 @@ jobs: - name: Download doc id: download-doc - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: doc github-token: ${{ secrets.GITHUB_TOKEN }} @@ -116,7 +116,7 @@ jobs: # - name: Download live doc # id: download-doc - # uses: actions/download-artifact@v4 + # uses: actions/download-artifact@v5 # with: # name: livedoc # github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a65c5582597..2d8a5d1a6af 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -141,7 +141,7 @@ jobs: ref: ${{ inputs.sage_ref }} fetch-depth: 10000 - name: Download upstream artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: upstream name: ${{ inputs.upstream_artifact }}