From b621791130dd8d59ad8e497623648bc2a381f131 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 14:52:33 +0000 Subject: [PATCH] chore(deps): Bump actions/cache from 4.3.0 to 5.0.3 Bumps [actions/cache](https://github.com/actions/cache) from 4.3.0 to 5.0.3. - [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/0057852bfaa89a56745cba8c7296529d2fc39830...cdf6c1fa76f9f475f3d7449005a359c84ca0f306) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/analyze.yml | 2 +- .github/workflows/security-check.yml | 2 +- .github/workflows/snyk-schedule.yml | 2 +- .github/workflows/snyk.yml | 2 +- .github/workflows/test.yml | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index 4a4dbd02..9bc5b807 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -26,7 +26,7 @@ jobs: uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 with: path: ~/.cache/pip key: ${{ runner.os}}-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/security-check.yml b/.github/workflows/security-check.yml index 67983a0e..689c5c6c 100644 --- a/.github/workflows/security-check.yml +++ b/.github/workflows/security-check.yml @@ -27,7 +27,7 @@ jobs: uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 with: path: ~/.cache/pip key: ${{ runner.os}}-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/snyk-schedule.yml b/.github/workflows/snyk-schedule.yml index 9d4b49b7..b10fe42c 100644 --- a/.github/workflows/snyk-schedule.yml +++ b/.github/workflows/snyk-schedule.yml @@ -28,7 +28,7 @@ jobs: with: node-version: 18 - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 with: path: ~/.cache/pip key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 8449348d..9848a5d6 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -28,7 +28,7 @@ jobs: with: node-version: 18 - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 with: path: ~/.cache/pip key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index abe2f5be..9dc9e25f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -90,21 +90,21 @@ jobs: # The caches need to have the python version included since the # "misc/.coverage-requirements.txt" does not have version-pinning. - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 if: startsWith(matrix.os, 'ubuntu-latest') with: path: ~/.cache/pip key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/.*-requirements.txt') }} restore-keys: | ${{ matrix.os }}-pip-${{ matrix.python-version }}- - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 if: startsWith(matrix.os, 'macos-latest') with: path: ~/Library/Caches/pip key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/.*-requirements.txt') }} restore-keys: | ${{ matrix.os }}-pip-${{ matrix.python-version }}- - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 if: startsWith(matrix.os, 'windows-latest') with: path: ~\AppData\Local\pip\Cache