diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5e0c990..48809ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,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') }}" @@ -43,7 +43,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') }}" @@ -75,7 +75,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') }}" @@ -84,7 +84,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 }}" @@ -112,7 +112,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') }}" @@ -120,7 +120,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/check-requirements.yml b/.github/workflows/check-requirements.yml index 4607840..299f21b 100644 --- a/.github/workflows/check-requirements.yml +++ b/.github/workflows/check-requirements.yml @@ -32,7 +32,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') }}"