From 1fe2e401d253c7e5bf3f1296e30f4f0df9c0c8fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 19:42:47 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5 to 6 in the github-actions group Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 5 to 6 - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/python-tests.yml | 2 +- .github/workflows/rust-tests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 302d83b..5be5830 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -53,7 +53,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache OpenSSL build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: vendor/openssl/install key: openssl-3.3.2-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('scripts/build-openssl.sh') }} diff --git a/.github/workflows/rust-tests.yml b/.github/workflows/rust-tests.yml index 7d5ce19..a3e6fbf 100644 --- a/.github/workflows/rust-tests.yml +++ b/.github/workflows/rust-tests.yml @@ -23,7 +23,7 @@ jobs: run: cargo fmt --all -- --check - name: Cache OpenSSL build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: vendor/openssl/install key: openssl-3.3.2-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('scripts/build-openssl.sh') }} @@ -54,7 +54,7 @@ jobs: uses: actions-rust-lang/setup-rust-toolchain@v1 - name: Cache OpenSSL build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: vendor/openssl/install key: openssl-3.3.2-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('scripts/build-openssl.sh') }}