Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: /bin/date -u "+%U" > cachedate.txt
shell: bash

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "${{ matrix.py }}"
cache: "pip"
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: install requirements
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
run: /bin/date -u "+%U" > cachedate.txt
shell: bash

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
id: setup-python
with:
python-version: ${{ matrix.py }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
name: "Collate results to check for skipped tests"
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"
# download everything
Expand All @@ -134,7 +134,7 @@ jobs:
run: /bin/date -u "+%U" > cachedate.txt
shell: bash

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
id: setup-python
with:
python-version: "3.x"
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
run: /bin/date -u "+%U" > cachedate.txt
shell: bash

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"
cache: "pip"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.x'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.11"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_test_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.11"

Expand Down
Loading