Skip to content

Commit 8132685

Browse files
chore(deps): update all non-major dependencies
1 parent 87727cd commit 8132685

File tree

8 files changed

+87
-76
lines changed

8 files changed

+87
-76
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-24.04
77

88
steps:
9-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1010
with:
1111
fetch-depth: 0
1212
- uses: dtolnay/rust-toolchain@master

.github/workflows/binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- { target: x86_64-apple-darwin, os: macos-14 }
2929

3030
steps:
31-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
3232
- name: Populate cache
3333
uses: ./.github/workflows/cache
3434

@@ -78,7 +78,7 @@ jobs:
7878
# disable static build for this job
7979
RUSTFLAGS: ""
8080
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
81-
uses: obi1kenobi/cargo-semver-checks-action@7272cc2caa468d3e009a2b0a9cc366839348237b # v2.6
81+
uses: obi1kenobi/cargo-semver-checks-action@5b298c9520f7096a4683c0bd981a7ac5a7e249ae # v2.8
8282
with:
8383
package: backhand
8484
feature-group: default-features

.github/workflows/cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
# over time).
88
- name: Add cache for cargo
99
id: cache
10-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
10+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
1111
with:
1212
path: |
1313
# Taken from <https://doc.rust-lang.org/nightly/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci>.

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
CARGO_TERM_COLOR: always
1313

1414
steps:
15-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1616
- name: Populate cache
1717
uses: ./.github/workflows/cache
1818

@@ -34,7 +34,7 @@ jobs:
3434
- run: cargo llvm-cov --workspace --codecov --output-path codecov.json --features __test_unsquashfs --release --no-clean -- --skip slow
3535

3636
- name: Upload coverage to Codecov
37-
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2
37+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
3838
with:
3939
token: ${{ secrets.CODECOV_TOKEN }}
4040
files: codecov.json

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# -
4040

4141
steps:
42-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
4343
- name: Populate cache
4444
uses: ./.github/workflows/cache
4545

@@ -80,7 +80,7 @@ jobs:
8080
-
8181

8282
steps:
83-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
83+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
8484
- name: Populate cache
8585
uses: ./.github/workflows/cache
8686

@@ -122,7 +122,7 @@ jobs:
122122
- xz,gzip,zstd,lz4,parallel,v3
123123

124124
steps:
125-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
125+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
126126
- name: Populate cache
127127
uses: ./.github/workflows/cache
128128

@@ -167,7 +167,7 @@ jobs:
167167

168168
steps:
169169
- run: sudo apt-get install -y squashfs-tools
170-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
170+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
171171
- uses: dtolnay/rust-toolchain@a54c7afa936fefeb4456b2dd8068152669aa8203 # master
172172
with:
173173
toolchain: ${{ matrix.toolchain }}
@@ -181,7 +181,7 @@ jobs:
181181
runs-on: ubuntu-24.04
182182

183183
steps:
184-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
184+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
185185
- uses: dtolnay/rust-toolchain@a54c7afa936fefeb4456b2dd8068152669aa8203 # master
186186
with:
187187
toolchain: stable

.github/workflows/msrv.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- 1.86
2020

2121
steps:
22-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
2323
- name: Populate cache
2424
uses: ./.github/workflows/cache
2525

@@ -38,7 +38,7 @@ jobs:
3838
- 1.86
3939

4040
steps:
41-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
41+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
4242
- name: Populate cache
4343
uses: ./.github/workflows/cache
4444

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)