From 4ec2ff8912ef258b3e71a3b46404397a67d73b60 Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Mon, 8 Jan 2024 13:42:19 +0200 Subject: [PATCH] .github/workflows/sphinx: Fix workflow (upload/download artifacts) - The version pins weren't synchronized and an update broke things. --- .github/workflows/sphinx.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index ef56675..90bc95c 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -128,7 +128,7 @@ jobs: touch _gh-pages/.nojekyll # Save artifact for the next step. - - uses: actions/upload-artifact@master + - uses: actions/upload-artifact@v4 if: ${{ github.event_name == 'push' }} with: name: gh-pages-build @@ -146,7 +146,7 @@ jobs: contents: write steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: ${{ github.event_name == 'push' && ( env.MULTIBRANCH == 'true' || github.ref == format('refs/heads/{0}', env.DEFAULT_BRANCH )) }} with: name: gh-pages-build