Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
os: [ubuntu-latest, macos-14, macos-15-intel] # need to fix windows.. leave off for now

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # make sure we get the version info

- name: Build wheels
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.1.0
with:
extras: "uv"

Expand All @@ -36,7 +36,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # make sure we get the version info

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
packages: zlib1g-dev libjpeg-dev libhdf5-dev
- name: Checkout on Ubuntu
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # fetch all history for git describe to work
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
-
name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v6
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# ssh-private-key: ${{ secrets.DIPMAS_DEPLOY_KEY }}

- name: Check out the repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
print(f"result={result}", file=io)

- name: Restore pre-commit cache
uses: actions/cache@v5
uses: actions/cache@v6
if: matrix.session == 'pre-commit'
with:
path: ~/.cache/pre-commit
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
needs: tests
steps:
- name: Check out the repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand All @@ -141,6 +141,6 @@ jobs:
uv run nox --session=coverage -- xml

- name: Upload coverage report
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# ssh-private-key: ${{ secrets.DIPMAS_DEPLOY_KEY }}

- name: Check out the repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
print(f"result={result}", file=io)

- name: Restore pre-commit cache
uses: actions/cache@v5
uses: actions/cache@v6
if: matrix.session == 'pre-commit'
with:
path: ~/.cache/pre-commit
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
needs: tests
steps:
- name: Check out the repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand All @@ -142,6 +142,6 @@ jobs:
uv run nox --session=coverage -- xml

- name: Upload coverage report
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
Loading