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
2 changes: 1 addition & 1 deletion .github/actions/cache/restore/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
- name: Restore cache to github
id: github-cache
if: ${{ runner.environment == 'github-hosted' }}
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
key: ${{ inputs.key }}
path: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/cache/save/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
steps:
- name: Save cache to github
if: ${{ runner.environment == 'github-hosted' }}
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
key: ${{ inputs.key }}
path: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- uses: crate-ci/typos@85f62a8a84f939ae994ab3763f01a0296d61a7ee # v1.36.2
- uses: crate-ci/typos@83157de2df0fa7c7ae20f73f9dbed44c41f2bb64 # v1.38.0
with:
files: .

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
key: build-bench-${{ inputs.target }}

- name: Install cargo-codspeed binary
uses: taiki-e/install-action@6f69ec9970ed0c500b1b76d648e05c4c7e0e5671 # v2
uses: taiki-e/install-action@f33d3f211b0303ea71864a2677724fed135b8e99 # v2
with:
tool: [email protected]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
key: build-bench-${{ inputs.target }}

- name: Install cargo-codspeed binary
uses: taiki-e/install-action@6f69ec9970ed0c500b1b76d648e05c4c7e0e5671 # v2
uses: taiki-e/install-action@f33d3f211b0303ea71864a2677724fed135b8e99 # v2
with:
tool: [email protected]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-release-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
save-if: true
key: release

- uses: cargo-bins/cargo-binstall@20aa316bab4942180bbbabe93237858e8d77f1ed # v1.15.5
- uses: cargo-bins/cargo-binstall@38e8f5e4c386b611d51e8aa997b9a06a3c8eb67a # v1.15.6

- name: Install cargo-workspaces
run: cargo binstall --no-confirm [email protected] --force
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable-rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Install cargo-binstall
if: ${{ inputs.cargo-check-strategy == 'separated' }}
uses: cargo-bins/cargo-binstall@20aa316bab4942180bbbabe93237858e8d77f1ed # v1.15.5
uses: cargo-bins/cargo-binstall@38e8f5e4c386b611d51e8aa997b9a06a3c8eb67a # v1.15.6

- name: Install cargo-workspaces
if: ${{ inputs.cargo-check-strategy == 'separated' }}
Expand Down Expand Up @@ -95,15 +95,15 @@ jobs:
run: cargo codegen

- name: Install cargo-deny
uses: taiki-e/install-action@6f69ec9970ed0c500b1b76d648e05c4c7e0e5671 # v2
uses: taiki-e/install-action@f33d3f211b0303ea71864a2677724fed135b8e99 # v2
with:
tool: [email protected]
- name: Check licenses
run: |
cargo deny --all-features check license bans
cargo xtask deny-ext

- uses: cargo-bins/cargo-binstall@20aa316bab4942180bbbabe93237858e8d77f1ed # v1.15.5
- uses: cargo-bins/cargo-binstall@38e8f5e4c386b611d51e8aa997b9a06a3c8eb67a # v1.15.6
- run: cargo binstall --no-confirm [email protected] --force
- run: cargo shear

Expand Down
Loading