From 4f98b29b7f255b27d2187a85c2840dad37b5f51a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Feb 2023 22:58:44 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.2.6 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.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/v2.1.6...v3.2.6) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/setup.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml index f786c8170..62a7e9505 100644 --- a/.github/workflows/setup.yml +++ b/.github/workflows/setup.yml @@ -8,7 +8,7 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-setup-${{ hashFiles('**/requirements*.txt') }} @@ -43,7 +43,7 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.2.6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-setup-${{ hashFiles('**/requirements*.txt') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 79b75f313..afb2629cf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Cache pip - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.2.6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}