Skip to content

Commit feaf4be

Browse files
authored
Merge branch 'main' into dependabot/github_actions/docker/login-action-3.6.0
2 parents c780669 + 20e299b commit feaf4be

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/code_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
version: "0.5.21"
3737
enable-cache: true
3838
- name: "Set up Python"
39-
uses: actions/setup-python@v5.5.0
39+
uses: actions/setup-python@v6
4040
with:
4141
python-version-file: ".python-version"
4242
- name: Install the project

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
enable-cache: true
6363

6464
- name: Set up Python
65-
uses: actions/setup-python@v5
65+
uses: actions/setup-python@v6
6666
with:
6767
python-version-file: ".python-version"
6868

@@ -99,7 +99,7 @@ jobs:
9999
enable-cache: true
100100

101101
- name: Set up Python
102-
uses: actions/setup-python@v5
102+
uses: actions/setup-python@v6
103103
with:
104104
python-version-file: ".python-version"
105105

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
version: "0.6.6"
2222
enable-cache: true
2323

24-
- uses: actions/setup-python@v5.5.0
24+
- uses: actions/setup-python@v6
2525
with:
2626
python-version: '3.10'
2727

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
enable-cache: true
5454

5555
- name: "Set up Python ${{ matrix.python-version }}"
56-
uses: actions/setup-python@v5.5.0
56+
uses: actions/setup-python@v6
5757
with:
5858
python-version: ${{ matrix.python-version }}
5959

@@ -76,7 +76,7 @@ jobs:
7676
gpg --keyserver keyserver.ubuntu.com --recv-keys 806BB28AED779869
7777
7878
- name: Upload coverage to Codecov
79-
uses: codecov/[email protected].0
79+
uses: codecov/[email protected].1
8080
with:
8181
token: ${{ secrets.CODECOV_TOKEN }}
8282
file: ./coverage.xml

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
- id: check-toml
1818

1919
- repo: https://github.com/astral-sh/ruff-pre-commit
20-
rev: 'v0.12.11'
20+
rev: 'v0.13.2'
2121
hooks:
2222
- id: ruff
2323
args: [--fix, --exit-non-zero-on-fix]
@@ -26,7 +26,7 @@ repos:
2626
types_or: [python, jupyter]
2727

2828
- repo: https://github.com/pre-commit/mirrors-mypy
29-
rev: v1.17.1
29+
rev: v1.18.2
3030
hooks:
3131
- id: mypy
3232
entry: python3 -m mypy --config-file pyproject.toml

0 commit comments

Comments
 (0)