Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
# override even for `cargo install`), which broke this job. A prebuilt
# binary is immune to future tool-dependency MSRV bumps.
- name: Install cargo-audit
uses: taiki-e/install-action@7f4eb899022d8fe70b20c4f3de697aa85c309026 # v2
uses: taiki-e/install-action@b20dedce73af6905cdc30d6611090c9b67557c8d # v2
with:
tool: cargo-audit

Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
command: check licenses sources

- name: Install cargo-vet
uses: taiki-e/install-action@7f4eb899022d8fe70b20c4f3de697aa85c309026 # v2
uses: taiki-e/install-action@b20dedce73af6905cdc30d6611090c9b67557c8d # v2
with:
tool: cargo-vet

Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
- name: Install uutils coreutils multicall for differential tests
id: install_uutils
continue-on-error: true
uses: taiki-e/install-action@7f4eb899022d8fe70b20c4f3de697aa85c309026 # v2
uses: taiki-e/install-action@b20dedce73af6905cdc30d6611090c9b67557c8d # v2
with:
tool: coreutils
- name: Verify uutils on PATH
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- uses: Swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 # v2

- name: Install cargo-tarpaulin
uses: taiki-e/install-action@7f4eb899022d8fe70b20c4f3de697aa85c309026 # v2
uses: taiki-e/install-action@b20dedce73af6905cdc30d6611090c9b67557c8d # v2
with:
tool: cargo-tarpaulin

Expand Down Expand Up @@ -85,15 +85,15 @@ jobs:
- uses: Swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 # v2

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@7f4eb899022d8fe70b20c4f3de697aa85c309026 # v2
uses: taiki-e/install-action@b20dedce73af6905cdc30d6611090c9b67557c8d # v2
with:
tool: cargo-llvm-cov

- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"

- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
- uses: astral-sh/setup-uv@ae62891fec2bb8e7d6c99fc78c9fec3a63790f8d # v10.0.0

- name: Generate Python-driven Rust coverage
run: |
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- uses: Swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 # v2

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@7f4eb899022d8fe70b20c4f3de697aa85c309026 # v2
uses: taiki-e/install-action@b20dedce73af6905cdc30d6611090c9b67557c8d # v2
with:
tool: cargo-llvm-cov

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
echo "---"
echo "Total files: $(ls -1 dist/ | wc -l)"

- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
- uses: astral-sh/setup-uv@ae62891fec2bb8e7d6c99fc78c9fec3a63790f8d # v10.0.0
- run: uvx twine check dist/*

# Smoke-test the single cp39-abi3 wheel on every targeted Python version.
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
- name: List dist files
run: ls -lhR dist/

- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
- uses: astral-sh/setup-uv@ae62891fec2bb8e7d6c99fc78c9fec3a63790f8d # v10.0.0

- name: Publish to PyPI
run: uv publish --trusted-publishing always dist/*
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
- uses: astral-sh/setup-uv@ae62891fec2bb8e7d6c99fc78c9fec3a63790f8d # v10.0.0

- name: Ruff check
run: uvx ruff check crates/bashkit-python
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
with:
python-version: "3.12"

- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
- uses: astral-sh/setup-uv@ae62891fec2bb8e7d6c99fc78c9fec3a63790f8d # v10.0.0

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@e081816240890017053eacbb1bdf337761dc5582 # 1.95.0
Expand Down