Merge branch 'develop' into improvement/use_python_3.10_for_gha

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

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

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

Loading…
Cancel
Save