From 41b508c54253545be8a8ccfacff85e7a5c95366c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 11:12:30 +0000 Subject: [PATCH] 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/builds.yml | 2 +- .github/workflows/main.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/style.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index e720e2c..34ad79f 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -27,7 +27,7 @@ jobs: if: matrix.os == 'macos-latest' run: echo "RECOGNITION_ARCH=crnn_vgg16_bn" >> $GITHUB_ENV - name: Cache python modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4cbf05a..8524e93 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: if: matrix.os == 'macos-latest' run: echo "RECOGNITION_ARCH=crnn_vgg16_bn" >> $GITHUB_ENV - name: Cache python modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}-tests diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ebd4abc..d020995 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: python-version: ${{ matrix.python }} architecture: x64 - name: Cache python modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 7fa73d6..36583fe 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -40,7 +40,7 @@ jobs: python-version: ${{ matrix.python }} architecture: x64 - name: Cache python modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}