Skip to content
Open
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ jobs:
with:
node-version: 14
- run: python -m pip install --upgrade pip && pip install nox
- uses: actions/cache@v4
- uses: actions/cache@v5
id: cache
with:
path: |
Expand Down Expand Up @@ -698,7 +698,7 @@ jobs:
workspaces:
examples/maturin-starter
save-if: ${{ github.event_name != 'merge_group' }}
- uses: actions/cache/restore@v4
- uses: actions/cache/restore@v5
with:
# https://github.com/PyO3/maturin/discussions/1953
path: ~/.cache/cargo-xwin
Expand All @@ -719,7 +719,7 @@ jobs:
cargo build --manifest-path examples/maturin-starter/Cargo.toml --features generate-import-lib --target x86_64-pc-windows-gnu
cargo xwin build --manifest-path examples/maturin-starter/Cargo.toml --features generate-import-lib --target x86_64-pc-windows-msvc
- if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ~/.cache/cargo-xwin
key: cargo-xwin-cache
Expand Down
Loading