From f919700672daf9f59c78cd8480c3d55afd44ac19 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 07:06:52 +0000 Subject: [PATCH] :arrow_up: Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cache.yml | 4 ++-- .github/workflows/ci.yml | 6 +++--- .github/workflows/collab.yml | 2 +- .github/workflows/linkcheck.yml | 2 +- .github/workflows/publish.yml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 3cbf454..206e4b4 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -46,13 +46,13 @@ jobs: run: | jb build lectures --path-output ./ -W --keep-going - name: Upload Execution Reports - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: execution-reports path: _build/html/reports - name: Upload "_build" folder (cache) - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: build-cache path: _build diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b709608..a37ef6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: mkdir -p _build/html/_notebooks cp -u _build/jupyter/*.ipynb _build/html/_notebooks - name: Upload Execution Reports (Download Notebooks) - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: execution-reports-notebooks @@ -85,7 +85,7 @@ jobs: mkdir -p _build/html/_pdf cp -u _build/latex/*.pdf _build/html/_pdf - name: Upload Execution Reports (LaTeX) - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: execution-reports-latex @@ -96,7 +96,7 @@ jobs: run: | jb build lectures --path-output ./ -n -W --keep-going - name: Upload Execution Reports (HTML) - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: execution-reports-html diff --git a/.github/workflows/collab.yml b/.github/workflows/collab.yml index 8870252..15b1245 100644 --- a/.github/workflows/collab.yml +++ b/.github/workflows/collab.yml @@ -48,7 +48,7 @@ jobs: run: | jb build lectures --path-output ./ -n -W --keep-going - name: Upload Execution Reports - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: execution-reports diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml index a416a0c..309ace6 100644 --- a/.github/workflows/linkcheck.yml +++ b/.github/workflows/linkcheck.yml @@ -40,7 +40,7 @@ jobs: shell: bash -l {0} run: jb build lectures --path-output=./ --builder=custom --custom-builder=linkcheck - name: Upload Link Checker Reports - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: linkcheck-reports diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0e39387..8d45ffb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -70,7 +70,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@v6 + - uses: actions/upload-artifact@v7 with: name: download-notebooks path: download-notebooks.zip