Skip to content

Commit c6996a7

Browse files
authored
update actions (#59)
1 parent e65067d commit c6996a7

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/codespell.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

2020
- name: Setup Python
2121
uses: actions/setup-python@v6
2222
with:
23-
python-version: '3.12'
23+
python-version: '3.13'
2424
cache: "pip"
2525

2626
- name: Install dependencies

.github/workflows/docs-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
- name: Install pandoc and doxygen
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Python
2828
uses: actions/setup-python@v6
2929
with:
30-
python-version: '3.12'
30+
python-version: '3.13'
3131
cache: "pip"
3232

3333
- name: Install dependencies

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414

1515
- name: Set up Python
1616
uses: actions/setup-python@v6
1717
with:
18-
python-version: "3.12"
18+
python-version: "3.13"
1919
cache: "pip"
2020

2121
- name: Install Python dependencies

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020

2121
- name: Install Python 3.12
2222
uses: actions/setup-python@v6
2323
with:
24-
python-version: '3.12'
24+
python-version: '3.14'
2525
cache: "pip"
2626

2727
- name: Install pylint

.github/workflows/pylint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020

2121
- name: Install Python
2222
uses: actions/setup-python@v6
2323
with:
24-
python-version: '3.12'
24+
python-version: '3.13'
2525
cache: "pip"
2626

2727
- name: Install dependencies + pylint

.github/workflows/pytest-all.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python-version: ["3.11", "3.12", "3.13", "3.14"]
20+
python-version: ["3.12", "3.13", "3.14"]
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424

2525
- name: Install Python ${{ matrix.python-version }}
2626
uses: actions/setup-python@v6

.github/workflows/pytest-mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python-version: ["3.11", "3.12", "3.13"]
20+
python-version: ["3.12", "3.13"]
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424

2525
- name: Install Python ${{ matrix.python-version }}
2626
uses: actions/setup-python@v6

0 commit comments

Comments
 (0)