From 318efa1be0d8b50f18cc08cc7529c1c2f9c5e522 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 16:10:05 +0000 Subject: [PATCH] :arrow_up: Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cache.yml | 4 ++-- .github/workflows/ci.yml | 2 +- .github/workflows/execution-linux.yml | 2 +- .github/workflows/execution-osx.yml | 2 +- .github/workflows/execution-win.yml | 2 +- .github/workflows/publish.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 8b0f8d1c..0289b018 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -23,13 +23,13 @@ jobs: run: | jb build lectures --path-output ./ -W --keep-going - name: Upload Execution Reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: execution-reports path: _build/html/reports - name: Upload "_build" folder (cache) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: build-cache path: _build diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 18a2cdae..f7744bc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: run: | jb build lectures --path-output ./ -n -W --keep-going - name: Upload Execution Reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: execution-reports diff --git a/.github/workflows/execution-linux.yml b/.github/workflows/execution-linux.yml index fe631710..6a92e1a8 100644 --- a/.github/workflows/execution-linux.yml +++ b/.github/workflows/execution-linux.yml @@ -32,7 +32,7 @@ jobs: shell: bash -l {0} run: jb build lectures --path-output=./ -W --keep-going - name: Upload Execution Reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: execution-reports diff --git a/.github/workflows/execution-osx.yml b/.github/workflows/execution-osx.yml index 5962bd7c..7b0508da 100644 --- a/.github/workflows/execution-osx.yml +++ b/.github/workflows/execution-osx.yml @@ -32,7 +32,7 @@ jobs: shell: bash -l {0} run: jb build lectures --path-output=./ -W --keep-going - name: Upload Execution Reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: execution-reports diff --git a/.github/workflows/execution-win.yml b/.github/workflows/execution-win.yml index bdedde17..22fd8fa5 100644 --- a/.github/workflows/execution-win.yml +++ b/.github/workflows/execution-win.yml @@ -37,7 +37,7 @@ jobs: shell: powershell run: jb build lectures --path-output=./ -W --keep-going - name: Upload Execution Reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: execution-reports diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 656d32bd..a08c9760 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -61,7 +61,7 @@ jobs: run: | jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter -n -W --keep-going zip -r download-notebooks.zip _build/jupyter - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: download-notebooks path: download-notebooks.zip