From 1d9539dc2044dc3e6b55f4eed47f5af100cc374d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 09:12:11 +0000 Subject: [PATCH] ci: bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/build-windows.yml | 4 ++-- .github/workflows/security-audit.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 9dfcff3..77a0767 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -23,7 +23,7 @@ jobs: python-version: '3.13' - name: Cache pip packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~\AppData\Local\pip\Cache key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -31,7 +31,7 @@ jobs: ${{ runner.os }}-pip- - name: Cache PyInstaller - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~\AppData\Local\pyinstaller diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml index 53df615..d4c0b71 100644 --- a/.github/workflows/security-audit.yml +++ b/.github/workflows/security-audit.yml @@ -28,7 +28,7 @@ jobs: python-version: '3.13' - name: Cache pip packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}