Skip to content

Commit 9b546cf

Browse files
committed
Updated actions to run on latest OS versions and Python
1 parent 6e22048 commit 9b546cf

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build-and-publish:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-24.04
1212
environment: release
1313
permissions:
1414
id-token: write
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: '3.11'
22+
python-version: '3.13'
2323
- name: Verify versioning
2424
run: |
2525
[ "$(poetry version -s)" == "${GITHUB_REF#refs/tags/v}" ]

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
os: ["ubuntu-20.04", "windows-2019", "macos-latest"]
14-
python-version: ["3.9", "3.10", "3.11", "3.12"]
13+
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1515
runs-on: ${{ matrix.os }}
1616
steps:
1717
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)