Skip to content

Commit e29b825

Browse files
authored
Merge branch 'main' into 6.0.0-dev
2 parents 3e08420 + 0eba631 commit e29b825

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/checkout@v4
3535
- name: Setup Python Environment
3636
# see https://github.com/actions/setup-python
37-
uses: actions/setup-python@v4
37+
uses: actions/setup-python@v5
3838
with:
3939
python-version: ${{ env.PYTHON_VERSION_DEFAULT }}
4040
architecture: 'x64'
@@ -58,7 +58,7 @@ jobs:
5858
uses: actions/checkout@v4
5959
- name: Setup Python Environment
6060
# see https://github.com/actions/setup-python
61-
uses: actions/setup-python@v4
61+
uses: actions/setup-python@v5
6262
with:
6363
python-version: ${{ env.PYTHON_VERSION_DEFAULT }}
6464
architecture: 'x64'
@@ -94,7 +94,7 @@ jobs:
9494
uses: actions/checkout@v4
9595
- name: Setup Python Environment
9696
# see https://github.com/actions/setup-python
97-
uses: actions/setup-python@v4
97+
uses: actions/setup-python@v5
9898
with:
9999
python-version: ${{ matrix.python-version }}
100100
architecture: 'x64'
@@ -137,7 +137,7 @@ jobs:
137137
run: mkdir ${{ env.REPORTS_DIR }}
138138
- name: Setup Python Environment
139139
# see https://github.com/actions/setup-python
140-
uses: actions/setup-python@v4
140+
uses: actions/setup-python@v5
141141
with:
142142
python-version: ${{ matrix.python-version }}
143143
architecture: 'x64'
@@ -212,7 +212,7 @@ jobs:
212212
uses: actions/checkout@v4
213213
- name: Setup Python Environment
214214
# see https://github.com/actions/setup-python
215-
uses: actions/setup-python@v4
215+
uses: actions/setup-python@v5
216216
with:
217217
python-version: '>=3.8 <=3.12' # supported version range
218218
- name: Validate Python Environment

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v4
5151
- name: Setup Python Environment
5252
# see https://github.com/actions/setup-python
53-
uses: actions/setup-python@v4
53+
uses: actions/setup-python@v5
5454
with:
5555
python-version: ${{ env.PYTHON_VERSION_DEFAULT }}
5656
architecture: 'x64'
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Setup python
8989
# see https://github.com/actions/setup-python
90-
uses: actions/setup-python@v4
90+
uses: actions/setup-python@v5
9191
with:
9292
python-version: ${{ env.PYTHON_VERSION_DEFAULT }}
9393
architecture: 'x64'

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ flake8-isort = "6.1.1"
9090
flake8-quotes = "3.3.2"
9191
flake8-use-fstring = "1.4"
9292
pep8-naming = "0.13.3"
93-
isort = "5.12.0"
93+
isort = "5.13.0"
9494
autopep8 = "2.0.4"
9595
mypy = "1.7.1"
9696
tox = "4.11.4"
9797
xmldiff = "2.6.3"
98-
bandit = "1.7.5"
98+
bandit = "1.7.6"
9999

100100
[tool.semantic_release]
101101
# see https://python-semantic-release.readthedocs.io/en/latest/configuration.html

0 commit comments

Comments
 (0)