mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-11-22 16:40:48 +00:00
Merge branch 'develop' into improvement/use_python_3.10_for_gha
This commit is contained in:
commit
14aff9cadc
2 changed files with 7 additions and 3 deletions
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
|
@ -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: "/"
|
||||||
|
|
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -19,9 +19,9 @@ 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.10"
|
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,
|
||||||
|
@ -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…
Reference in a new issue