From 44e5d4e888de59a137bf132a29f34077a5eccf5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 06:16:26 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.11. - [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...v3.0.11) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/check-requirements.yml | 2 +- .github/workflows/check.yml | 4 ++-- .github/workflows/coveralls.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check-requirements.yml b/.github/workflows/check-requirements.yml index deb2ed4..3e214e7 100644 --- a/.github/workflows/check-requirements.yml +++ b/.github/workflows/check-requirements.yml @@ -25,7 +25,7 @@ jobs: python-version: "${{ env.DEFAULT_PYTHON_VERSION }}" - name: "Pip cache" id: "pip-cache" - uses: "actions/cache@v2" + uses: "actions/cache@v3.0.11" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }}" diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 60da8e9..3dc5c2b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -27,7 +27,7 @@ jobs: python-version: "${{ env.DEFAULT_PYTHON_VERSION }}" - name: "Pip cache" id: "pip-cache" - uses: "actions/cache@v2" + uses: "actions/cache@v3.0.11" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ matrix.toxenv }}-${{ hashFiles('setup.cfg') }}" @@ -36,7 +36,7 @@ jobs: "${{ runner.os }}-pip-" - name: "Pre-commit cache" id: "pre-commit-cache" - uses: "actions/cache@v2" + uses: "actions/cache@v3.0.11" with: path: "~/.cache/pre-commit" key: "${{ runner.os }}-pre-commit-${{ matrix.toxenv }}-${{ hashFiles('.pre-commit-config.yaml') }}" diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml index 97284d6..12e82d0 100644 --- a/.github/workflows/coveralls.yml +++ b/.github/workflows/coveralls.yml @@ -24,7 +24,7 @@ jobs: python-version: "${{ env.DEFAULT_PYTHON_VERSION }}" - name: "Pip cache" id: "pip-cache" - uses: "actions/cache@v2" + uses: "actions/cache@v3.0.11" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }}" @@ -32,7 +32,7 @@ jobs: "${{ runner.os }}-pip-" - name: "Temporarily save coverage statistics" id: "temporarily-save-coverage-statistics" - uses: "actions/cache@v2" + uses: "actions/cache@v3.0.11" with: path: ".coverage" key: ".coverage-${{ github.run_id }}-${{ github.run_number }}" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9713647..5d10535 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: python-version: "${{ matrix.python-version }}" - name: "Pip cache" id: "pip-cache" - uses: "actions/cache@v2" + uses: "actions/cache@v3.0.11" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }}" @@ -35,7 +35,7 @@ jobs: "${{ runner.os }}-pip-" - name: "Temporarily save coverage statistics" id: "temporarily-save-coverage-statistics" - uses: "actions/cache@v2" + uses: "actions/cache@v3.0.11" with: path: ".coverage" key: ".coverage-${{ github.run_id }}-${{ github.run_number }}"