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 @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
name: "'${{ matrix.toxenv }}' on py${{ matrix.py }}"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: get date for caching
run: /bin/date -u "+%U" > cachedate.txt
Expand All @@ -40,7 +40,7 @@ jobs:
test-sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: "3.x"
Expand All @@ -66,7 +66,7 @@ jobs:
name: "Test on ${{ matrix.os }}, py${{ matrix.py }}"
runs-on: "${{ matrix.os }}-latest"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: get date for caching
run: /bin/date -u "+%U" > cachedate.txt
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
name: "Collate results to check for skipped tests"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: "3.x"
Expand All @@ -128,7 +128,7 @@ jobs:
ensure-catalog-matches-hook-config:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: get date for caching
run: /bin/date -u "+%U" > cachedate.txt
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
name: "Self-Check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: get date for caching
run: /bin/date -u "+%U" > cachedate.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
vendor-schemas:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
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 @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
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 @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: "3.11"
Expand Down
Loading