1
0
Fork 0
mirror of https://github.com/cisagov/log4j-affected-db.git synced 2024-11-22 16:40:48 +00:00

Change the cache paths from hardcoded values in their appropriate blocks to environment variables declared before the job block.

This commit is contained in:
Nicholas McDonnell 2020-03-04 08:41:59 -05:00
parent b58f7a1546
commit 478f1688a1
No known key found for this signature in database
GPG key ID: A3A493305F40A162

View file

@ -6,6 +6,10 @@ on: [
pull_request
]
env:
PIP_CACHE_DIR: ~/.cache/pip
PRE_COMMIT_CACHE_DIR: ~/.cache/pre-commit
jobs:
build:
runs-on: ubuntu-latest
@ -21,7 +25,7 @@ jobs:
- name: Cache pip test requirements
uses: actions/cache@v1
with:
path: ~/.cache/pip
path: ${{ env.PIP_CACHE_DIR }}
key: "${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-\
${{ hashFiles('**/requirements-test.txt') }}"
restore-keys: |
@ -31,7 +35,7 @@ jobs:
- name: Cache pre-commit hooks
uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
path: ${{ env.PRE_COMMIT_CACHE_DIR }}
key: "${{ runner.os }}-pre-commit-py${{ env.PY_VERSION }}-\
${{ hashFiles('**/.pre-commit-config.yaml') }}"
- name: Install dependencies