Skip to content

Commit 74b5bdc

Browse files
chore(deps): update all non-major dependencies
1 parent 86eba06 commit 74b5bdc

11 files changed

+39
-39
lines changed

.github/workflows/docs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
sphinx:
2323
runs-on: ubuntu-20.04
2424
steps:
25-
- uses: actions/checkout@v3.5.0
25+
- uses: actions/checkout@v3.5.2
2626
- name: Set up Python
27-
uses: actions/setup-python@v4.5.0
27+
uses: actions/setup-python@v4.6.1
2828
with:
2929
python-version: "3.11"
3030
- name: Install dependencies
@@ -42,9 +42,9 @@ jobs:
4242
twine-check:
4343
runs-on: ubuntu-20.04
4444
steps:
45-
- uses: actions/checkout@v3.5.0
45+
- uses: actions/checkout@v3.5.2
4646
- name: Set up Python
47-
uses: actions/setup-python@v4.5.0
47+
uses: actions/setup-python@v4.6.1
4848
with:
4949
python-version: "3.11"
5050
- name: Install dependencies

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
lint:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3.5.0
25+
- uses: actions/checkout@v3.5.2
2626
with:
2727
fetch-depth: 0
28-
- uses: actions/setup-python@v4.5.0
28+
- uses: actions/setup-python@v4.6.1
2929
with:
3030
python-version: "3.11"
3131
- run: pip install --upgrade tox

.github/workflows/pre_commit.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
pre_commit:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v3.5.0
33-
- uses: actions/setup-python@v4.5.0
32+
- uses: actions/checkout@v3.5.2
33+
- uses: actions/setup-python@v4.6.1
3434
with:
3535
python-version: "3.11"
3636
- name: install tox

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
id-token: write
1414
environment: pypi.org
1515
steps:
16-
- uses: actions/checkout@v3.5.0
16+
- uses: actions/checkout@v3.5.2
1717
with:
1818
fetch-depth: 0
1919
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
@@ -29,7 +29,7 @@ jobs:
2929
echo "::add-mask::${api_token}"
3030
echo "api-token=${api_token}" >> "${GITHUB_OUTPUT}"
3131
- name: Python Semantic Release
32-
uses: relekang/python-semantic-release@v7.33.2
32+
uses: relekang/python-semantic-release@v7.33.5
3333
with:
3434
github_token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
3535
pypi_token: ${{ steps.mint-token.outputs.api-token }}

.github/workflows/test.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ jobs:
4848
version: "3.11"
4949
toxenv: py310,smoke
5050
steps:
51-
- uses: actions/checkout@v3.5.0
51+
- uses: actions/checkout@v3.5.2
5252
- name: Set up Python ${{ matrix.python.version }}
53-
uses: actions/setup-python@v4.5.0
53+
uses: actions/setup-python@v4.6.1
5454
with:
5555
python-version: ${{ matrix.python.version }}
5656
- name: Install dependencies
@@ -66,9 +66,9 @@ jobs:
6666
matrix:
6767
toxenv: [api_func_v4, cli_func_v4]
6868
steps:
69-
- uses: actions/checkout@v3.5.0
69+
- uses: actions/checkout@v3.5.2
7070
- name: Set up Python
71-
uses: actions/setup-python@v4.5.0
71+
uses: actions/setup-python@v4.6.1
7272
with:
7373
python-version: "3.11"
7474
- name: Install dependencies
@@ -78,7 +78,7 @@ jobs:
7878
TOXENV: ${{ matrix.toxenv }}
7979
run: tox -- --override-ini='log_cli=True'
8080
- name: Upload codecov coverage
81-
uses: codecov/codecov-action@v3.1.1
81+
uses: codecov/codecov-action@v3.1.4
8282
with:
8383
files: ./coverage.xml
8484
flags: ${{ matrix.toxenv }}
@@ -87,9 +87,9 @@ jobs:
8787
coverage:
8888
runs-on: ubuntu-20.04
8989
steps:
90-
- uses: actions/checkout@v3.5.0
90+
- uses: actions/checkout@v3.5.2
9191
- name: Set up Python ${{ matrix.python-version }}
92-
uses: actions/setup-python@v4.5.0
92+
uses: actions/setup-python@v4.6.1
9393
with:
9494
python-version: "3.11"
9595
- name: Install dependencies
@@ -100,7 +100,7 @@ jobs:
100100
TOXENV: cover
101101
run: tox
102102
- name: Upload codecov coverage
103-
uses: codecov/codecov-action@v3.1.1
103+
uses: codecov/codecov-action@v3.1.4
104104
with:
105105
files: ./coverage.xml
106106
flags: unit
@@ -128,9 +128,9 @@ jobs:
128128
runs-on: ubuntu-latest
129129
needs: [dist]
130130
steps:
131-
- uses: actions/checkout@v3.5.0
131+
- uses: actions/checkout@v3.5.2
132132
- name: Set up Python
133-
uses: actions/setup-python@v4.5.0
133+
uses: actions/setup-python@v4.6.1
134134
with:
135135
python-version: '3.11'
136136
- uses: actions/download-artifact@v3.0.2

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ default_language_version:
33

44
repos:
55
- repo: https://github.com/psf/black
6-
rev: 23.1.0
6+
rev: 23.3.0
77
hooks:
88
- id: black
99
- repo: https://github.com/commitizen-tools/commitizen
@@ -20,7 +20,7 @@ repos:
2020
hooks:
2121
- id: isort
2222
- repo: https://github.com/pycqa/pylint
23-
rev: v2.17.1
23+
rev: v2.17.4
2424
hooks:
2525
- id: pylint
2626
additional_dependencies:
@@ -30,7 +30,7 @@ repos:
3030
- requests-toolbelt==0.9.1
3131
files: 'gitlab/'
3232
- repo: https://github.com/pre-commit/mirrors-mypy
33-
rev: v1.1.1
33+
rev: v1.3.0
3434
hooks:
3535
- id: mypy
3636
args: []

requirements-docs.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-r requirements.txt
2-
furo==2023.3.27
2+
furo==2023.5.20
33
jinja2==3.1.2
44
myst-parser==1.0.0
55
sphinx==5.3.0

requirements-lint.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
-r requirements.txt
22
argcomplete==2.0.0
3-
black==23.1.0
4-
commitizen==3.2.1
3+
black==23.3.0
4+
commitizen==3.2.2
55
flake8==6.0.0
66
isort==5.12.0
7-
mypy==1.1.1
8-
pylint==2.17.1
9-
pytest==7.2.2
7+
mypy==1.3.0
8+
pylint==2.17.4
9+
pytest==7.3.1
1010
responses==0.23.1
11-
types-PyYAML==6.0.12.8
12-
types-requests==2.28.11.16
11+
types-PyYAML==6.0.12.10
12+
types-requests==2.31.0.0
1313
types-setuptools==65.7.0.4

requirements-precommit.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pre-commit==3.2.1
1+
pre-commit==3.3.2

requirements-test.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
-r requirements.txt
22
build==0.10.0
3-
coverage==7.2.2
4-
pytest-console-scripts==1.3.1
5-
pytest-cov==4.0.0
6-
pytest-github-actions-annotate-failures==0.1.8
7-
pytest==7.2.2
3+
coverage==7.2.6
4+
pytest-console-scripts==1.4.0
5+
pytest-cov==4.1.0
6+
pytest-github-actions-annotate-failures==0.2.0
7+
pytest==7.3.1
88
PyYaml==5.4.1
99
responses==0.23.1
10-
setuptools==67.7.2
10+
setuptools==67.8.0
1111
wheel==0.40.0

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
requests==2.28.2
22
requests-toolbelt==1.0.0
3-
typing-extensions==4.5.0 ; python_version < "3.8"
3+
typing-extensions==4.6.2 ; python_version < "3.8"

0 commit comments

Comments
 (0)