Skip to content

Commit

Permalink
Merge pull request #136 from netromdk/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/cache-3.2.1

chore(deps): Bump actions/cache from 3.0.11 to 3.2.1
  • Loading branch information
netromdk committed Dec 29, 2022
2 parents 3d05da1 + f76ad97 commit 6bca3fc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyze.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-python@2c3dd9e7e29afd70cc0950079bde6c979d1f69f9
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7
- uses: actions/cache@c1a5de879eb890d062a85ee0252d6036480b1fe2
with:
path: ~/.cache/pip
key: ${{ runner.os}}-pip-${{ hashFiles('**/.*-requirements.txt') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snyk-schedule.yml
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
node-version: 18

- uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7
- uses: actions/cache@c1a5de879eb890d062a85ee0252d6036480b1fe2
with:
path: ~/.cache/pip
key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snyk.yml
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
node-version: 18

- uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7
- uses: actions/cache@c1a5de879eb890d062a85ee0252d6036480b1fe2
with:
path: ~/.cache/pip
key: snyk-pip-${{ hashFiles('**/.*-requirements.txt') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -59,21 +59,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@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7
- uses: actions/cache@c1a5de879eb890d062a85ee0252d6036480b1fe2
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@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7
- uses: actions/cache@c1a5de879eb890d062a85ee0252d6036480b1fe2
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@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7
- uses: actions/cache@c1a5de879eb890d062a85ee0252d6036480b1fe2
if: startsWith(matrix.os, 'windows-latest')
with:
path: ~\AppData\Local\pip\Cache
Expand Down

0 comments on commit 6bca3fc

Please sign in to comment.