Skip to content

Commit 57d6ac0

Browse files
authored
Merge branch 'develop' into maintenance/update_pre-commit_hooks
2 parents 9a03808 + 504ed9e commit 57d6ac0

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ updates:
1111
directory: "/"
1212
schedule:
1313
interval: "weekly"
14+
# ignore:
15+
# - dependency-name: actions/cache
16+
# - dependency-name: actions/checkout
17+
# - dependency-name: actions/setup-python
1418

1519
- package-ecosystem: "pip"
1620
directory: "/"

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
steps:
2020
- id: setup-env
2121
uses: cisagov/setup-env-github-action@develop
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- id: setup-python
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v3
2525
with:
26-
python-version: 3.9
26+
python-version: "3.10"
2727
# We need the Go version and Go cache location for the actions/cache step,
2828
# so the Go installation must happen before that.
2929
- uses: actions/setup-go@v2
3030
with:
31-
go-version: '1.16'
31+
go-version: "1.16"
3232
- name: Store installed Go version
3333
id: go-version
3434
run: |
@@ -38,7 +38,7 @@ jobs:
3838
id: go-cache
3939
run: |
4040
echo "::set-output name=dir::$(go env GOCACHE)"
41-
- uses: actions/cache@v2
41+
- uses: actions/cache@v3
4242
env:
4343
BASE_CACHE_KEY: "${{ github.job }}-${{ runner.os }}-\
4444
py${{ steps.setup-python.outputs.python-version }}-\

0 commit comments

Comments
 (0)