Skip to content

Commit

Permalink
ci: bump checkout, setup-python action versions
Browse files Browse the repository at this point in the history
Use released Python 3.12
  • Loading branch information
tseaver committed May 16, 2024
1 parent 8e284e3 commit e8363bd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12-dev"
- "3.12"
- "pypy-3.9"
os:
- "ubuntu-20.04"
Expand All @@ -28,7 +28,7 @@ jobs:
exclude:
# persistent fails to build on 3.12-dev on MacOS in GitHub
- os: macos-latest
py: "3.12-dev"
py: "3.12"

include:
# Only run coverage on ubuntu-20.04, except on pypy3
Expand All @@ -42,9 +42,9 @@ jobs:
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
architecture: ${{ matrix.architecture }}
Expand All @@ -55,9 +55,9 @@ jobs:
runs-on: ubuntu-20.04
name: Validate coverage
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.7
architecture: x64
Expand All @@ -67,9 +67,9 @@ jobs:
runs-on: ubuntu-20.04
name: Build the documentation
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.7
architecture: x64
Expand Down

0 comments on commit e8363bd

Please sign in to comment.