Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
# Pin the interpreter -- the step used to take whatever the runner
# image shipped -- and cache the wheels. Sphinx and its extensions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: "3.11"

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: ${{ env.PYTHON_LATEST }}
cache: pip
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
# Required by the 3.15 rows: a bare `3.15` matches stable releases
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: pypy3.11
cache: pip
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: '3.12'
cache: pip
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: '3.12'
cache: pip
Expand Down Expand Up @@ -463,7 +463,7 @@ jobs:
name: Checkout source repository
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
# Pin the interpreter (the step previously took whatever the runner
# image shipped) so the pip cache below has a stable key.
Expand Down
Loading