Merge branch 'develop' into maintenance/update_pre-commit_hooks

pull/521/head
Nick 2 years ago committed by GitHub
commit 57d6ac04b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/dependabot.yml
  2. 10
      .github/workflows/build.yml

@ -11,6 +11,10 @@ updates:
directory: "/" directory: "/"
schedule: schedule:
interval: "weekly" interval: "weekly"
# ignore:
# - dependency-name: actions/cache
# - dependency-name: actions/checkout
# - dependency-name: actions/setup-python
- package-ecosystem: "pip" - package-ecosystem: "pip"
directory: "/" directory: "/"

@ -19,16 +19,16 @@ jobs:
steps: steps:
- id: setup-env - id: setup-env
uses: cisagov/setup-env-github-action@develop uses: cisagov/setup-env-github-action@develop
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- id: setup-python - id: setup-python
uses: actions/setup-python@v2 uses: actions/setup-python@v3
with: with:
python-version: 3.9 python-version: "3.10"
# We need the Go version and Go cache location for the actions/cache step, # We need the Go version and Go cache location for the actions/cache step,
# so the Go installation must happen before that. # so the Go installation must happen before that.
- uses: actions/setup-go@v2 - uses: actions/setup-go@v2
with: with:
go-version: '1.16' go-version: "1.16"
- name: Store installed Go version - name: Store installed Go version
id: go-version id: go-version
run: | run: |
@ -38,7 +38,7 @@ jobs:
id: go-cache id: go-cache
run: | run: |
echo "::set-output name=dir::$(go env GOCACHE)" echo "::set-output name=dir::$(go env GOCACHE)"
- uses: actions/cache@v2 - uses: actions/cache@v3
env: env:
BASE_CACHE_KEY: "${{ github.job }}-${{ runner.os }}-\ BASE_CACHE_KEY: "${{ github.job }}-${{ runner.os }}-\
py${{ steps.setup-python.outputs.python-version }}-\ py${{ steps.setup-python.outputs.python-version }}-\

Loading…
Cancel
Save