File tree 5 files changed +7
-7
lines changed
template/.github/workflows
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 9
9
# if you use those, you don't need updates.
10
10
- dependency-name : " actions/*"
11
11
- package-ecosystem : " github-actions"
12
- directory : " /template"
12
+ directory : " /template/.github/workflows " # Should specify full path if it's not '/'.
13
13
schedule :
14
14
interval : " weekly"
15
15
ignore :
Original file line number Diff line number Diff line change 30
30
-
uses :
pre-commit/[email protected]
31
31
with :
32
32
extra_args : --all-files
33
- -
uses :
pre-commit-ci/[email protected] .1
33
+ -
uses :
pre-commit-ci/[email protected] .2
34
34
if : always()
35
35
with :
36
36
msg : Apply automatic formatting
Original file line number Diff line number Diff line change 47
47
runs-on : ' ubuntu-22.04'
48
48
steps :
49
49
- run : sudo apt install --yes graphviz pandoc
50
- - uses : actions/checkout@v3
50
+ - uses : actions/checkout@v4
51
51
with :
52
52
ref : ${{ inputs.branch == '' && github.ref_name || inputs.branch }}
53
53
fetch-depth : 0 # history required so cmake can determine version
Original file line number Diff line number Diff line change 18
18
runs-on : ' ubuntu-22.04'
19
19
20
20
steps :
21
- - uses : actions/checkout@v3
21
+ - uses : actions/checkout@v4
22
22
with :
23
23
submodules : true
24
24
fetch-depth : 0 # history required so setuptools_scm can determine version
41
41
runs-on : ' ubuntu-22.04'
42
42
43
43
steps :
44
- - uses : actions/checkout@v3
44
+ - uses : actions/checkout@v4
45
45
with :
46
46
fetch-depth : 0 # history required so setuptools_scm can determine version
47
47
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ jobs:
48
48
runs-on : ${{ inputs.os-variant }}
49
49
50
50
steps :
51
- - uses : actions/checkout@v3
51
+ - uses : actions/checkout@v4
52
52
with :
53
53
ref : ${{ inputs.checkout_ref }}
54
- - uses : actions/setup-python@v3
54
+ - uses : actions/setup-python@v5
55
55
with :
56
56
python-version : ${{ inputs.python-version }}
57
57
- run : python -m pip install --upgrade pip
You can’t perform that action at this time.
0 commit comments