Merge pull request #48 from cisagov/improvement/switch_setup-python_and_cache_actions_to_v2

Update actions/cache and actions/setup-python to v2
pull/113/head
Nick M 4 years ago committed by GitHub
commit e0fbcdad8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 26
      .github/workflows/build.yml

@ -16,29 +16,25 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-python@v1 - uses: actions/setup-python@v2
with: with:
python-version: 3.8 python-version: 3.8
- name: Store installed Python version - name: Store installed Python version
run: | run: |
echo "::set-env name=PY_VERSION::"\ echo "::set-env name=PY_VERSION::"\
"$(python -c "import platform;print(platform.python_version())")" "$(python -c "import platform;print(platform.python_version())")"
- name: Cache pip test requirements - name: Cache linting environments
uses: actions/cache@v1 uses: actions/cache@v2
with: with:
path: ${{ env.PIP_CACHE_DIR }} path: |
key: "${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-\ ${{ env.PIP_CACHE_DIR }}
${{ hashFiles('**/requirements-test.txt') }}" ${{ env.PRE_COMMIT_CACHE_DIR }}
restore-keys: | key: "lint-${{ runner.os }}-py${{ env.PY_VERSION }}-\
${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}- ${{ hashFiles('**/requirements-test.txt') }}-\
${{ 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 }}-\
${{ hashFiles('**/.pre-commit-config.yaml') }}" ${{ hashFiles('**/.pre-commit-config.yaml') }}"
restore-keys: |
lint-${{ runner.os }}-py${{ env.PY_VERSION }}-
lint-${{ runner.os }}-
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip

Loading…
Cancel
Save