Skip to content

Commit e32b932

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/setup-python-6
2 parents 9ad44dc + 1b79266 commit e32b932

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@v4
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@v3
56+
uses: github/codeql-action/autobuild@v4
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
6767
# make release
6868

6969
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@v3
70+
uses: github/codeql-action/analyze@v4

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
python-version: ["3.13"]
1313
os: [ubuntu-latest]
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Set up Python ${{ matrix.python-version }}
1717
uses: actions/setup-python@v6
1818
with:

.github/workflows/dev_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ["3.11", "3.12", "3.13"]
1515
os: [ubuntu-latest]
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Set up Python ${{ matrix.python-version }}
1919
uses: actions/setup-python@v6
2020
with:

.github/workflows/formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
os: [ubuntu-latest]
1414
tool: ["black", "isort"]
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Set up Python ${{ matrix.python-version }}
1818
uses: actions/setup-python@v6
1919
with:

.github/workflows/no_byte_order_mark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
bom-check:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- uses: arma-actions/bom-check@v1
1515
name: Check for BOM

.github/workflows/packaging_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
python-version: ["3.13"]
1313
os: [ubuntu-latest]
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Set up Python ${{ matrix.python-version }}
1717
uses: actions/setup-python@v6
1818
with:

.github/workflows/pythonlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
os: [ubuntu-latest]
1515
linter-env: ["linting", "type_check", "spell_check"]
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Set up Python ${{ matrix.python-version }}
1919
uses: actions/setup-python@v6
2020
with:

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
python-version: ["3.11", "3.12", "3.13"]
1313
os: [ubuntu-latest]
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Set up Python ${{ matrix.python-version }}
1717
uses: actions/setup-python@v6
1818
with:

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,27 @@ dynamic = ["readme", "version"]
2222

2323
[project.optional-dependencies]
2424
tests = [
25-
"pytest==8.4.1"
25+
"pytest==9.0.1"
2626
]
2727
linting = [
28-
"pylint==3.3.8"
28+
"pylint==4.0.3"
2929
]
3030
type_check = [
31-
"mypy==1.17.1"
31+
"mypy==1.18.2"
3232
]
3333
spell_check = [
3434
"codespell==2.4.1"
3535
]
3636
coverage = [
37-
"coverage==7.10.6"
37+
"coverage==7.12.0"
3838
]
3939
formatting = [
40-
"black==25.1.0",
41-
"isort==6.0.1"
40+
"black==25.11.0",
41+
"isort==7.0.0"
4242
]
4343
packaging = [
4444
"build==1.3.0",
45-
"twine==6.1.0"
45+
"twine==6.2.0"
4646
]
4747
dev = [
4848
"pip-tools"

0 commit comments

Comments
 (0)