File tree Expand file tree Collapse file tree 2 files changed +13
-19
lines changed Expand file tree Collapse file tree 2 files changed +13
-19
lines changed Original file line number Diff line number Diff line change 1
1
# https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates
2
2
version : 2
3
3
updates :
4
+ - package-ecosystem : github-actions
5
+ directory : /
6
+ schedule :
7
+ interval : monthly
4
8
- package-ecosystem : pip
5
9
directory : /
6
10
schedule :
Original file line number Diff line number Diff line change 8
8
# https://github.com/pre-commit/action
9
9
pre-commit :
10
10
name : Lint
11
- runs-on : ubuntu-latest
11
+ runs-on : ubuntu-24.04
12
12
steps :
13
- - uses : actions/checkout@v2
14
- - uses : actions/setup-python@v2
15
- - uses : pre-commit/action@v2 .0.0
13
+ - uses : actions/checkout@v4
14
+ - uses : actions/setup-python@v5
15
+ - uses : pre-commit/action@v3 .0.1
16
16
17
17
test :
18
18
name : Test
@@ -25,27 +25,17 @@ jobs:
25
25
- ' 3.10'
26
26
env :
27
27
PACKER_VERSION : 1.6.1
28
- runs-on : ubuntu-20 .04
28
+ runs-on : ubuntu-24 .04
29
29
steps :
30
- - uses : actions/checkout@v2
30
+ - uses : actions/checkout@v4
31
31
- name : Set up Python ${{ matrix.python-version }}
32
- uses : actions/setup-python@v2
32
+ uses : actions/setup-python@v5
33
33
with :
34
34
python-version : ${{ matrix.python-version }}
35
- - name : Cache pip
36
- id : cache
37
- uses : actions/cache@v2
38
- with :
39
- # This path is specific to Ubuntu
40
- path : ~/.cache/pip
41
- # Look to see if there is a cache hit for the corresponding requirements file
42
- key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
43
- restore-keys : |
44
- ${{ runner.os }}-pip-
45
- ${{ runner.os }}-
35
+ cache : pip
46
36
- name : Cache packer
47
37
id : cachepacker
48
- uses : actions/cache@v2
38
+ uses : actions/cache@v4
49
39
with :
50
40
path : ~/bin
51
41
key : ${{ runner.os }}-packer-${{ env.PACKER_VERSION }}
You can’t perform that action at this time.
0 commit comments