Skip to content
Merged
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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:
CARGO_CACHE: ${{ github.workspace }}/.cache/cargo-registry
XWIN_CACHE: ${{ github.workspace }}/.cache/xwin
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
# The draft has no tag yet; build exactly the commit it is pinned to.
ref: ${{ inputs.sha }}
# The MSVC CRT/SDK download only changes when the xwin setup does.
- uses: actions/cache@v5
- uses: actions/cache@v6
with:
path: .cache/xwin
key: xwin-${{ hashFiles('bin/build') }}
- uses: actions/cache@v5
- uses: actions/cache@v6
with:
path: .cache/cargo-registry
key: cargo-registry-${{ hashFiles('Cargo.lock') }}
Expand Down