diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index ae13c8b..307dc86 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -22,7 +22,7 @@ jobs: uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 + - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 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 3bbf6d9..06ed6a2 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@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 + - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 with: path: ~/.cache/pip key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 12b16f0..1f6778c 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -28,7 +28,7 @@ jobs: with: node-version: 18 - - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 + - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 with: path: ~/.cache/pip key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e92b83..e42060a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,21 +74,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@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 + - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 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@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 + - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 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@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 + - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 if: startsWith(matrix.os, 'windows-latest') with: path: ~\AppData\Local\pip\Cache