Skip to content
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: workflows
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
# The image carries shellcheck, so every `run:` block is checked too.
- uses: docker://rhysd/actionlint:1.7.7
with:
Expand All @@ -44,7 +44,7 @@ jobs:
name: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
Expand All @@ -54,7 +54,7 @@ jobs:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
Expand All @@ -73,7 +73,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -100,7 +100,7 @@ jobs:
name: cli without the browser
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test --locked --no-default-features --all-targets
Expand All @@ -125,7 +125,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
name: doc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
- run: cargo doc --workspace --no-deps
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
tag: ${{ steps.check.outputs.tag }}
release: ${{ steps.check.outputs.release }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Decide whether this commit is a release
id: check
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
if: needs.gate.outputs.release == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
# CI covers macOS and Windows; this is the Linux run, and it is what
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
- target: x86_64-pc-windows-msvc
os: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -337,7 +337,7 @@ jobs:
- target: x86_64-pc-windows-msvc
os: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:
needs: [gate, test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# Building *from* the sdist compiles the whole client, so the toolchain
# is pinned rather than left to whatever the runner image happens to
Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:
# valid for thirty minutes, and revoked when the job ends.
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2

Expand Down Expand Up @@ -569,7 +569,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# The binaries only. The wheels went to PyPI, which is where `pip` looks;
# attaching them here as well would offer two channels for the same
Expand Down Expand Up @@ -650,7 +650,7 @@ jobs:
needs: [gate, publish]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# Asked before minting anything, because create-github-app-token fails
# outright on a missing key, and a tap nobody has set up yet should warn
Expand Down
Loading