Skip to content

Commit 2769849

Browse files
deps(workflows): bump actions/setup-python from 4 to 5 (#198)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xuehai Pan <[email protected]>
1 parent 4fd9d29 commit 2769849

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
fetch-depth: 0
5555

5656
- name: Set up Python
57-
uses: actions/setup-python@v4
57+
uses: actions/setup-python@v5
5858
with:
5959
python-version: "3.8 - 3.11" # sync with requires-python in pyproject.toml
6060
update-environment: true
@@ -114,7 +114,7 @@ jobs:
114114
fetch-depth: 0
115115

116116
- name: Set up Python
117-
uses: actions/setup-python@v4
117+
uses: actions/setup-python@v5
118118
with:
119119
python-version: ${{ matrix.python-version }}
120120
update-environment: true
@@ -164,7 +164,7 @@ jobs:
164164
fetch-depth: 0
165165

166166
- name: Set up Python
167-
uses: actions/setup-python@v4
167+
uses: actions/setup-python@v5
168168
with:
169169
python-version: ${{ matrix.python-version }}
170170
update-environment: true
@@ -212,7 +212,7 @@ jobs:
212212
fetch-depth: 0
213213

214214
- name: Set up Python
215-
uses: actions/setup-python@v4
215+
uses: actions/setup-python@v5
216216
if: startsWith(github.ref, 'refs/tags/')
217217
with:
218218
python-version: "3.8 - 3.11" # sync with requires-python in pyproject.toml

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fetch-depth: 1
3131

3232
- name: Set up Python 3.9
33-
uses: actions/setup-python@v4
33+
uses: actions/setup-python@v5
3434
with:
3535
python-version: "3.9"
3636
update-environment: true

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
fetch-depth: 1
4343

4444
- name: Set up Python 3.8
45-
uses: actions/setup-python@v4
45+
uses: actions/setup-python@v5
4646
with:
4747
python-version: "3.8" # the lowest version we support (sync with requires-python in pyproject.toml)
4848
update-environment: true
@@ -112,7 +112,7 @@ jobs:
112112
fetch-depth: 1
113113

114114
- name: Set up Python 3.8
115-
uses: actions/setup-python@v4
115+
uses: actions/setup-python@v5
116116
with:
117117
python-version: "3.8" # the lowest version we support (sync with requires-python in pyproject.toml)
118118
update-environment: true

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ repos:
3030
hooks:
3131
- id: clang-format
3232
- repo: https://github.com/astral-sh/ruff-pre-commit
33-
rev: v0.1.6
33+
rev: v0.1.7
3434
hooks:
3535
- id: ruff
3636
args: [--fix, --exit-non-zero-on-fix]
3737
- repo: https://github.com/PyCQA/isort
38-
rev: 5.12.0
38+
rev: 5.13.0
3939
hooks:
4040
- id: isort
4141
- repo: https://github.com/psf/black

0 commit comments

Comments
 (0)