Skip to content

Commit 14aff9c

Browse files
authored
Merge branch 'develop' into improvement/use_python_3.10_for_gha
2 parents e22c12c + d168151 commit 14aff9c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ 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:
2626
python-version: "3.10"
2727
# We need the Go version and Go cache location for the actions/cache step,
@@ -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)