From a70396fba4d368a349bcc4c963c2874339a7dfb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 00:47:32 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-book-pullrequest.yaml | 2 +- .github/workflows/build-book.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-book-pullrequest.yaml b/.github/workflows/build-book-pullrequest.yaml index 85be074e..b828b268 100644 --- a/.github/workflows/build-book-pullrequest.yaml +++ b/.github/workflows/build-book-pullrequest.yaml @@ -74,7 +74,7 @@ jobs: fi zip -r book.zip ${{ inputs.path_to_notebooks }}/_build/html - name: Upload zipped book artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: book-zip-${{github.event.number}} path: ./book.zip diff --git a/.github/workflows/build-book.yaml b/.github/workflows/build-book.yaml index 542a284e..7d1e3666 100644 --- a/.github/workflows/build-book.yaml +++ b/.github/workflows/build-book.yaml @@ -71,7 +71,7 @@ jobs: fi zip -r book.zip ${{ inputs.path_to_notebooks }}/_build/html - name: Upload zipped book artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: book-zip-${{github.event.number}} path: ./book.zip