From 89a89295eb3759dc0c3293c4cb98d8aac9141e38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Jan 2023 01:09:31 +0000 Subject: [PATCH] Bump actions/cache from 3.0.7 to 3.2.3 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.7 to 3.2.3. - [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/v3.0.7...v3.2.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... 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 8277197..b500609 100644 --- a/.github/workflows/check-requirements.yml +++ b/.github/workflows/check-requirements.yml @@ -21,7 +21,7 @@ jobs: python-version: "${{ env.DEFAULT_PYTHON_VERSION }}" - name: "Pip cache" id: "pip-cache" - uses: "actions/cache@v3.0.7" + uses: "actions/cache@v3.2.3" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }}" diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index b85be92..b289138 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -23,7 +23,7 @@ jobs: python-version: "${{ env.DEFAULT_PYTHON_VERSION }}" - name: "Pip cache" id: "pip-cache" - uses: "actions/cache@v3.0.7" + uses: "actions/cache@v3.2.3" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ matrix.toxenv }}-${{ hashFiles('setup.cfg') }}" @@ -32,7 +32,7 @@ jobs: "${{ runner.os }}-pip-" - name: "Pre-commit cache" id: "pre-commit-cache" - uses: "actions/cache@v3.0.7" + uses: "actions/cache@v3.2.3" 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 155a2fd..c765109 100644 --- a/.github/workflows/coveralls.yml +++ b/.github/workflows/coveralls.yml @@ -20,7 +20,7 @@ jobs: python-version: "${{ env.DEFAULT_PYTHON_VERSION }}" - name: "Pip cache" id: "pip-cache" - uses: "actions/cache@v3.0.7" + uses: "actions/cache@v3.2.3" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }}" @@ -28,7 +28,7 @@ jobs: "${{ runner.os }}-pip-" - name: "Temporarily save coverage statistics" id: "temporarily-save-coverage-statistics" - uses: "actions/cache@v3.0.7" + uses: "actions/cache@v3.2.3" with: path: ".coverage" key: ".coverage-${{ github.run_id }}-${{ github.run_number }}" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9f57444..bbd7b75 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: python-version: "${{ matrix.python-version }}" - name: "Pip cache" id: "pip-cache" - uses: "actions/cache@v3.0.7" + uses: "actions/cache@v3.2.3" with: path: "~/.cache/pip" key: "${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }}" @@ -31,7 +31,7 @@ jobs: "${{ runner.os }}-pip-" - name: "Temporarily save coverage statistics" id: "temporarily-save-coverage-statistics" - uses: "actions/cache@v3.0.7" + uses: "actions/cache@v3.2.3" with: path: ".coverage" key: ".coverage-${{ github.run_id }}-${{ github.run_number }}"