Skip to content

Commit b486dcc

Browse files
committed
Update GitHub Actions workflow for Python
Adds Python 3.13 to the test matrix and updates actions/checkout and actions/setup-python to their latest major versions for improved compatibility and security.
1 parent ed33305 commit b486dcc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pythonapp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.9]
16+
python-version: [3.9, 3.13]
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v1
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Display Python version

0 commit comments

Comments
 (0)