diff --git a/.github/workflows/check-requirements.yml b/.github/workflows/check-requirements.yml index c6207fd..632831d 100644 --- a/.github/workflows/check-requirements.yml +++ b/.github/workflows/check-requirements.yml @@ -23,7 +23,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 a57fb3f..ba27ffe 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 e56cc20..c4fff0e 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 d2c49ec..77142b6 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 }}"