Skip to content

Commit fbbf6b8

Browse files
zingalezhichen3
andauthored
update python version in actions (#3199)
also some tests don't need "fetch-depth: 0" Co-authored-by: Zhi Chen <62574124+zhichen3@users.noreply.github.com>
1 parent c940047 commit fbbf6b8

File tree

6 files changed

+8
-17
lines changed

6 files changed

+8
-17
lines changed

.github/workflows/check-ifdefs.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v6
11-
with:
12-
fetch-depth: 0
1311

1412
- name: Setup Python
1513
uses: actions/setup-python@v6
1614
with:
17-
python-version: '3.11'
15+
python-version: '3.14'
1816

1917
- name: Run check-ifdefs
2018
run: |

.github/workflows/check-makefiles.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,13 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v6
18-
with:
19-
fetch-depth: 0
2018

2119
- name: Setup Python
2220
uses: actions/setup-python@v6
2321
with:
24-
python-version: '3.11'
22+
python-version: '3.14'
2523

26-
- name: Run check-ifdefs
24+
- name: Run check_makefiles
2725
run: |
2826
python .github/workflows/check_makefiles.py
2927

.github/workflows/check-params.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v6
18-
with:
19-
fetch-depth: 0
2018

2119
- name: Get submodules
2220
run: |
@@ -30,7 +28,7 @@ jobs:
3028
- name: Setup Python
3129
uses: actions/setup-python@v6
3230
with:
33-
python-version: '3.11'
31+
python-version: '3.14'
3432

3533
- name: Run check-params
3634
run: |

.github/workflows/codespell.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v6
11-
with:
12-
fetch-depth: 0
1311

1412
- name: Setup Python
1513
uses: actions/setup-python@v6
1614
with:
17-
python-version: '3.11'
15+
python-version: '3.14'
1816
cache: "pip"
1917

2018
- name: Install dependencies

.github/workflows/docs-test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v6
15-
with:
16-
fetch-depth: 0
15+
1716
- name: Install pandoc and doxygen
1817
run: |
1918
sudo apt install pandoc doxygen
2019
2120
- name: Setup Python
2221
uses: actions/setup-python@v6
2322
with:
24-
python-version: '3.11'
23+
python-version: '3.14'
2524
cache: "pip"
2625

2726
- name: Install dependencies

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Python
2121
uses: actions/setup-python@v6
2222
with:
23-
python-version: '3.11'
23+
python-version: '3.14'
2424
cache: "pip"
2525

2626
- name: Upgrade pip

0 commit comments

Comments
 (0)