From 3815a9959eddb761f55f6efb13f90478c62edcc3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:14:57 +0000 Subject: [PATCH] :arrow_up: Bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' 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 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index d40f043..22be241 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -23,13 +23,13 @@ jobs: jb build lectures --path-output ./ --keep-going # TODO: Re-enable -W flag once all lectures are translated and warnings are resolved - name: Upload Execution Reports - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: failure() with: name: execution-reports path: _build/html/reports - name: Upload "_build" folder (cache) - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: build-cache path: _build diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb8f2f2..820b75e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: run: | jb build lectures --path-output ./ -n --keep-going - name: Upload Execution Reports - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: failure() with: name: execution-reports