From 403cfabef85681b39ef5ba5f4f72e4f6b4c83cad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 07:20:36 +0000 Subject: [PATCH] Bump the all-github-actions group with 2 updates Bumps the all-github-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/cache](https://github.com/actions/cache). Updates `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) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/QuartoBuildPublish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/QuartoBuildPublish.yml b/.github/workflows/QuartoBuildPublish.yml index aa60089..9f39317 100644 --- a/.github/workflows/QuartoBuildPublish.yml +++ b/.github/workflows/QuartoBuildPublish.yml @@ -84,7 +84,7 @@ jobs: run(`$(quarto()) render index.qmd --to pdf`) - name: Upload PDF presentation - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: pdf-presentation path: | @@ -92,7 +92,7 @@ jobs: retention-days: 30 - name: Upload HTML presentation - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: html-presentation path: | @@ -103,7 +103,7 @@ jobs: - name: Save Julia depot cache on cancel or failure id: julia-cache-save if: cancelled() || failure() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: | ${{ steps.julia-cache.outputs.cache-paths }}