File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 39
39
] ,
40
40
datasourceTemplate : 'github-tags' ,
41
41
} ,
42
+ /** Python version in actions/setup-python action */
43
+ {
44
+ fileMatch : [ '^\\.github/workflows/.*\\.yaml$' ] ,
45
+ matchStrings : [ ' python-version: [\'"](?<currentValue>[0-9\\.]+)[\'"]' ] ,
46
+ datasourceTemplate : 'python-version' ,
47
+ depNameTemplate : 'python' ,
48
+ } ,
42
49
] ,
43
50
packageRules : [
44
51
/** Less strict version for Docker images */
130
137
matchUpdateTypes : [ 'major' , 'minor' ] ,
131
138
groupName : 'gdal' ,
132
139
} ,
140
+ /** Ungroup Python dependencies */
141
+ {
142
+ matchDepNames : [ 'python' ] ,
143
+ groupName : 'Python' ,
144
+ } ,
133
145
] ,
134
146
}
Original file line number Diff line number Diff line change 17
17
github-gopass-ci-token : ${{secrets.GOPASS_CI_GITHUB_TOKEN}}
18
18
patterns : docker
19
19
20
- - run : echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
21
- - run : python3 -m pip install --user --requirement=ci/requirements.txt
20
+ - uses : actions/setup-python@v5
21
+ with :
22
+ python-version : ' 3.11'
23
+ - run : python3 -m pip install --requirement=ci/requirements.txt
22
24
23
25
- name : Clean Docker hub tags
24
26
run : c2cciutils-clean
You can’t perform that action at this time.
0 commit comments