diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index 4a4dbd02..8ffbf0b1 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -26,7 +26,7 @@ jobs: uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: ~/.cache/pip key: ${{ runner.os}}-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/security-check.yml b/.github/workflows/security-check.yml index 67983a0e..f1b01d87 100644 --- a/.github/workflows/security-check.yml +++ b/.github/workflows/security-check.yml @@ -27,7 +27,7 @@ jobs: uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: ~/.cache/pip key: ${{ runner.os}}-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/snyk-schedule.yml b/.github/workflows/snyk-schedule.yml index 9d4b49b7..dfb8d2d2 100644 --- a/.github/workflows/snyk-schedule.yml +++ b/.github/workflows/snyk-schedule.yml @@ -28,7 +28,7 @@ jobs: with: node-version: 18 - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: ~/.cache/pip key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 8449348d..2a357672 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -28,7 +28,7 @@ jobs: with: node-version: 18 - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb with: path: ~/.cache/pip key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index abe2f5be..4ad13d7f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -90,21 +90,21 @@ jobs: # The caches need to have the python version included since the # "misc/.coverage-requirements.txt" does not have version-pinning. - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb if: startsWith(matrix.os, 'ubuntu-latest') with: path: ~/.cache/pip key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/.*-requirements.txt') }} restore-keys: | ${{ matrix.os }}-pip-${{ matrix.python-version }}- - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb if: startsWith(matrix.os, 'macos-latest') with: path: ~/Library/Caches/pip key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/.*-requirements.txt') }} restore-keys: | ${{ matrix.os }}-pip-${{ matrix.python-version }}- - - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 + - uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb if: startsWith(matrix.os, 'windows-latest') with: path: ~\AppData\Local\pip\Cache