Skip to content

Commit b624355

Browse files
committed
Update versions in GitHub Workflows
(I bloody hate github workflows, annoying ahh hell to maintain)
1 parent c32dd6a commit b624355

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/workflows/cd.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ jobs:
1010
name: Tagged Release
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Set up Python
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v6
1616
with:
17-
python-version: "3.12"
17+
python-version: "3.14"
1818
- name: Install Poetry
19-
uses: abatilo/actions-poetry@v2
19+
uses: abatilo/actions-poetry@v3
2020
with:
21-
poetry-version: 1.6.1
21+
poetry-version: 2.1.3
2222
- name: Install project
2323
run: poetry install --only main
2424
- name: Build project
2525
run: poetry build
2626
- name: Upload wheel
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: Python Wheel
3030
path: "dist/*.whl"

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Set up Python
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v6
1616
with:
17-
python-version: "3.12"
17+
python-version: "3.14"
1818
- name: Install poetry
19-
uses: abatilo/actions-poetry@v2
19+
uses: abatilo/actions-poetry@v3
2020
with:
21-
poetry-version: 1.6.1
21+
poetry-version: 2.1.3
2222
- name: Install project
2323
run: poetry install --all-extras
2424
- name: Run pre-commit which does various checks
@@ -27,17 +27,17 @@ jobs:
2727
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
30-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
30+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v4
34+
uses: actions/setup-python@v6
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
- name: Install poetry
38-
uses: abatilo/actions-poetry@v2
38+
uses: abatilo/actions-poetry@v3
3939
with:
40-
poetry-version: 1.6.1
40+
poetry-version: 2.1.3
4141
- name: Install project
4242
run: poetry install --all-extras --only main
4343
- name: Build project

0 commit comments

Comments
 (0)