Skip to content

Commit d8af2cf

Browse files
committed
Merge branch 'release/0.3.6' into main
2 parents 7e66068 + d66b65c commit d8af2cf

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
sudo apt-get -y update
3737
sudo apt-get install libcups2-dev wamerican
3838
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
- name: Set up Python ${{ matrix.python-version }}
41-
uses: actions/setup-python@v4
41+
uses: actions/setup-python@v5
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444

@@ -48,7 +48,7 @@ jobs:
4848
echo "dir=$(pip cache dir)" >>$GITHUB_OUTPUT
4949
5050
- name: Cache
51-
uses: actions/cache@v3
51+
uses: actions/cache@v4
5252
with:
5353
path: ${{ steps.pip-cache.outputs.dir }}
5454
key:

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,32 @@ exclude: tests/etc/user-*
33

44
repos:
55
- repo: https://github.com/PyCQA/bandit
6-
rev: 1.7.5
6+
rev: 1.7.7
77
hooks:
88
- id: bandit
99
args:
1010
- "-x *test*.py"
1111

1212
- repo: https://github.com/psf/black
13-
rev: 23.3.0
13+
rev: 24.2.0
1414
hooks:
1515
- id: black
16-
language_version: python3.10
16+
language_version: python3.11
1717

1818
- repo: https://github.com/pycqa/flake8
19-
rev: 6.0.0
19+
rev: 7.0.0
2020
hooks:
2121
- id: flake8
2222
args:
2323
- "--config=setup.cfg"
2424

2525
- repo: https://github.com/PyCQA/isort
26-
rev: 5.12.0
26+
rev: 5.13.2
2727
hooks:
2828
- id: isort
2929

3030
- repo: https://github.com/pre-commit/pre-commit-hooks
31-
rev: v4.4.0
31+
rev: v4.5.0
3232
hooks:
3333
- id: requirements-txt-fixer
3434
files: requirements/.*\.txt$
@@ -42,7 +42,7 @@ repos:
4242
- id: detect-private-key
4343

4444
- repo: https://github.com/adrienverge/yamllint
45-
rev: v1.31.0
45+
rev: v1.34.0
4646
hooks:
4747
- id: yamllint
4848
args:

0 commit comments

Comments
 (0)