Commit 7d42996 1 parent 70a95d7 commit 7d42996 Copy full SHA for 7d42996
File tree 5 files changed +10
-6
lines changed
5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Do NOT update manually; changes here will be overwritten by Copier
2
- _commit : v1.27
2
+ _commit : v1.29
3
3
_src_path : git+https://github.com/OCA/oca-addons-repo-template
4
4
additional_ruff_rules : []
5
5
ci : GitHub
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ jobs:
13
13
pre-commit :
14
14
runs-on : ubuntu-22.04
15
15
steps :
16
- - uses : actions/checkout@v3
17
- - uses : actions/setup-python@v2
16
+ - uses : actions/checkout@v4
17
+ - uses : actions/setup-python@v5
18
18
with :
19
19
python-version : " 3.11"
20
20
- name : Get python version
21
21
run : echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
22
- - uses : actions/cache@v1
22
+ - uses : actions/cache@v4
23
23
with :
24
24
path : ~/.cache/pre-commit
25
25
key : pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
Original file line number Diff line number Diff line change 14
14
runs-on : ubuntu-latest
15
15
name : Detect unreleased dependencies
16
16
steps :
17
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@v4
18
18
- run : |
19
19
for reqfile in requirements.txt test-requirements.txt ; do
20
20
if [ -f ${reqfile} ] ; then
52
52
env :
53
53
OCA_ENABLE_CHECKLOG_ODOO : " 1"
54
54
steps :
55
- - uses : actions/checkout@v3
55
+ - uses : actions/checkout@v4
56
56
with :
57
57
persist-credentials : false
58
58
- name : Install addons and dependencies
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ extend-select = [
10
10
" I" , # isort
11
11
" UP" , # pyupgrade
12
12
]
13
+ extend-safe-fixes = [" UP008" ]
13
14
exclude = [" setup/*" ]
14
15
15
16
[format ]
Original file line number Diff line number Diff line change
1
+ [checklog-odoo]
2
+ ignore =
3
+ WARNING.* 0 failed, 0 error\(s\).*
You can’t perform that action at this time.
0 commit comments