Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/ci-citation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: "validate"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-locks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ concurrency:

jobs:
refresh_lockfiles:
uses: scitools/workflows/.github/workflows/refresh-lockfiles.yml@2025.11.2
uses: scitools/workflows/.github/workflows/refresh-lockfiles.yml@2026.01.0
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/ci-manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ concurrency:
jobs:
manifest:
name: "check-manifest"
uses: scitools/workflows/.github/workflows/ci-manifest.yml@2025.11.2
uses: scitools/workflows/.github/workflows/ci-manifest.yml@2026.01.0
2 changes: 1 addition & 1 deletion .github/workflows/ci-template-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
prompt-share:
uses: scitools/workflows/.github/workflows/ci-template-check.yml@2025.11.2
uses: scitools/workflows/.github/workflows/ci-template-check.yml@2026.01.0
secrets: inherit
with:
pr_number: ${{ github.event.pull_request.number }}
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
codecov: "codecov"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ jobs:
arch: "AMD64"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: "build ${{ matrix.os }} (${{ matrix.arch }}) wheels"
uses: pypa/cibuildwheel@v3.3.0
uses: pypa/cibuildwheel@v3.3.1
env:
CIBW_SKIP: "cp39-* cp310-* cp311-* pp* *-musllinux*"
CIBW_ARCHS: ${{ matrix.arch }}
Expand All @@ -59,7 +59,7 @@ jobs:
CIBW_TEST_COMMAND: >
python -m pytest --pyargs stratify

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: pypi-${{ matrix.os }}-${{ matrix.arch }}-artifact
path: ${{ github.workspace }}/wheelhouse/*.whl
Expand All @@ -69,7 +69,7 @@ jobs:
name: "Build sdist"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -78,7 +78,7 @@ jobs:
run: |
pipx run build --sdist

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: pypi-sdist
path: ${{ github.workspace }}/dist/*.tar.gz
Expand All @@ -89,7 +89,7 @@ jobs:
name: "Show artifacts"
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
merge-multiple: true
path: ${{ github.workspace }}/dist
Expand All @@ -106,7 +106,7 @@ jobs:
# upload to Test PyPI for every commit on main branch
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
merge-multiple: true
path: ${{ github.workspace }}/dist
Expand All @@ -127,7 +127,7 @@ jobs:
# upload to PyPI for every tag starting with 'v'
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
merge-multiple: true
path: ${{ github.workspace }}/dist
Expand Down
Loading