mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-11-22 16:40:48 +00:00
Merge pull request #48 from cisagov/improvement/switch_setup-python_and_cache_actions_to_v2
Update actions/cache and actions/setup-python to v2
This commit is contained in:
commit
e0fbcdad8a
1 changed files with 11 additions and 15 deletions
26
.github/workflows/build.yml
vendored
26
.github/workflows/build.yml
vendored
|
@ -16,29 +16,25 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-python@v1
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Store installed Python version
|
||||
run: |
|
||||
echo "::set-env name=PY_VERSION::"\
|
||||
"$(python -c "import platform;print(platform.python_version())")"
|
||||
- name: Cache pip test requirements
|
||||
uses: actions/cache@v1
|
||||
- name: Cache linting environments
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ${{ env.PIP_CACHE_DIR }}
|
||||
key: "${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-\
|
||||
${{ hashFiles('**/requirements-test.txt') }}"
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-
|
||||
${{ runner.os }}-pip-test-
|
||||
${{ runner.os }}-pip-
|
||||
- name: Cache pre-commit hooks
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ${{ env.PRE_COMMIT_CACHE_DIR }}
|
||||
key: "${{ runner.os }}-pre-commit-py${{ env.PY_VERSION }}-\
|
||||
path: |
|
||||
${{ env.PIP_CACHE_DIR }}
|
||||
${{ env.PRE_COMMIT_CACHE_DIR }}
|
||||
key: "lint-${{ runner.os }}-py${{ env.PY_VERSION }}-\
|
||||
${{ hashFiles('**/requirements-test.txt') }}-\
|
||||
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
||||
restore-keys: |
|
||||
lint-${{ runner.os }}-py${{ env.PY_VERSION }}-
|
||||
lint-${{ runner.os }}-
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
|
|
Loading…
Reference in a new issue