File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ updates:
11
11
directory : " /"
12
12
schedule :
13
13
interval : " weekly"
14
+ # ignore:
15
+ # - dependency-name: actions/cache
16
+ # - dependency-name: actions/checkout
17
+ # - dependency-name: actions/setup-python
14
18
15
19
- package-ecosystem : " pip"
16
20
directory : " /"
Original file line number Diff line number Diff line change @@ -19,16 +19,16 @@ jobs:
19
19
steps :
20
20
- id : setup-env
21
21
uses : cisagov/setup-env-github-action@develop
22
- - uses : actions/checkout@v2
22
+ - uses : actions/checkout@v3
23
23
- id : setup-python
24
- uses : actions/setup-python@v2
24
+ uses : actions/setup-python@v3
25
25
with :
26
- python-version : 3.9
26
+ python-version : " 3.10 "
27
27
# We need the Go version and Go cache location for the actions/cache step,
28
28
# so the Go installation must happen before that.
29
29
- uses : actions/setup-go@v2
30
30
with :
31
- go-version : ' 1.16'
31
+ go-version : " 1.16"
32
32
- name : Store installed Go version
33
33
id : go-version
34
34
run : |
38
38
id : go-cache
39
39
run : |
40
40
echo "::set-output name=dir::$(go env GOCACHE)"
41
- - uses : actions/cache@v2
41
+ - uses : actions/cache@v3
42
42
env :
43
43
BASE_CACHE_KEY : " ${{ github.job }}-${{ runner.os }}-\
44
44
py${{ steps.setup-python.outputs.python-version }}-\
You can’t perform that action at this time.
0 commit comments