From 9cda953cc0765b48af702df70a09da4f88e5502c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 02:27:10 +0000 Subject: [PATCH] Bump the actions-all group with 2 updates Bumps the actions-all 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: actions-all - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all ... Signed-off-by: dependabot[bot] --- .github/workflows/publish.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ed7423ae..512968cf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -43,7 +43,7 @@ jobs: uv run python bin/prepare_release_email.py > release-email.txt - name: Upload release email - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: release-email path: release-email.txt diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 24028059..0efad249 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,7 @@ jobs: uv.lock - name: Cache virtual environment - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-venv with: path: .venv @@ -52,7 +52,7 @@ jobs: # store it - name: Cache PySM3 data files id: cache-pysm3 - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/pysm3-data key: pysm3-data-${{ runner.os }}-${{ matrix.python }}-${{ matrix.mpi }}-${{ secrets.CACHE_VERSION }}