Skip to content

Commit 8009c80

Browse files
committed
Update action versions and Python versions in GitHub Actions testing workflow.
1 parent c35029c commit 8009c80

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build-publish-sign-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- call-workflow-lint-test-cover-docs
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Install Python.
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: 3.12
2222
architecture: x64
@@ -42,7 +42,7 @@ jobs:
4242
id-token: write
4343
steps:
4444
- name: Download all the package distributions.
45-
uses: actions/download-artifact@v4
45+
uses: actions/download-artifact@v5
4646
with:
4747
name: python-package-distributions
4848
path: dist/
@@ -58,12 +58,12 @@ jobs:
5858
id-token: write # For Sigstore.
5959
steps:
6060
- name: Download all the package distributions.
61-
uses: actions/download-artifact@v4
61+
uses: actions/download-artifact@v5
6262
with:
6363
name: python-package-distributions
6464
path: dist/
6565
- name: Sign the package distributions with Sigstore.
66-
uses: sigstore/gh-action-sigstore-python@v3.0.0
66+
uses: sigstore/gh-action-sigstore-python@v3.0.1
6767
with:
6868
inputs: >-
6969
./dist/*.tar.gz

.github/workflows/lint-test-cover-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66
workflow_call: # If invoked by build-publish-sign-release workflow.
77
jobs:
88
lint_test_cover_docs:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
12+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1313
name: Python ${{ matrix.python-version }}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Install Python.
1717
uses: actions/setup-python@v5
1818
with:

0 commit comments

Comments
 (0)