From 690a2b1ac3703439118588769aff664c720b96a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Feb 2023 15:57:17 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.2.5 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.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/v2.1.6...v3.2.5) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bffc85d6..5496998ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: with: python-version: 3.8 - name: Cache PyPI - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.5 with: key: pip-lint-${{ hashFiles('**/requirements.txt') }} path: ~/.cache/pip @@ -100,7 +100,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: Cache PyPI - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.5 with: key: pip-ci-${{ runner.os }}-${{ matrix.pyver }}-${{ hashFiles('**/requirements.txt') }} path: ${{ steps.pip-cache.outputs.dir }}