From 00d1350aa052204fda8e889d9139dd1d2a2e6140 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 22:54:29 +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 | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 881caa9..df0c13d 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -24,7 +24,7 @@ jobs: run: | jb build lectures --path-output ./ -W --keep-going - name: Upload "_build" folder (cache) - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: build-cache path: _build \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4aea63..d3f3e32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: run: | jb build -W --keep-going lectures --path-output ./ - name: Save Build as Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: _build path: _build diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d7c8d9c..702d50c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -60,7 +60,7 @@ jobs: run: | jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter 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