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:
parent
b58f7a1546
commit
478f1688a1
1 changed files with 6 additions and 2 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
@ -6,6 +6,10 @@ on: [
|
||||||
pull_request
|
pull_request
|
||||||
]
|
]
|
||||||
|
|
||||||
|
env:
|
||||||
|
PIP_CACHE_DIR: ~/.cache/pip
|
||||||
|
PRE_COMMIT_CACHE_DIR: ~/.cache/pre-commit
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -21,7 +25,7 @@ jobs:
|
||||||
- name: Cache pip test requirements
|
- name: Cache pip test requirements
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pip
|
path: ${{ env.PIP_CACHE_DIR }}
|
||||||
key: "${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-\
|
key: "${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-\
|
||||||
${{ hashFiles('**/requirements-test.txt') }}"
|
${{ hashFiles('**/requirements-test.txt') }}"
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
|
@ -31,7 +35,7 @@ jobs:
|
||||||
- name: Cache pre-commit hooks
|
- name: Cache pre-commit hooks
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pre-commit
|
path: ${{ env.PRE_COMMIT_CACHE_DIR }}
|
||||||
key: "${{ runner.os }}-pre-commit-py${{ env.PY_VERSION }}-\
|
key: "${{ runner.os }}-pre-commit-py${{ env.PY_VERSION }}-\
|
||||||
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
Loading…
Reference in a new issue