Skip to content

Commit b62c059

Browse files
fix(deps): update all non-major dependencies
1 parent b5b36ea commit b62c059

File tree

10 files changed

+84
-73
lines changed

10 files changed

+84
-73
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

backhand-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "Binaries for the reading, creating, and modification of SquashFS
1212
readme = "../README.md"
1313

1414
[dependencies]
15-
nix = { version = "0.30.0", default-features = false, features = ["fs"] }
15+
nix = { version = "0.31.0", default-features = false, features = ["fs"] }
1616
clap = { version = "4.5.13", features = ["derive", "wrap_help"] }
1717
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }
1818
libc = "0.2.162"
@@ -71,4 +71,4 @@ bench = false
7171
[dev-dependencies]
7272
gungraun = "0.17.0"
7373
test-assets-ureq = "0.6.0"
74-
toml = "0.8"
74+
toml = "0.9"

backhand-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ assert_cmd = { version = "2.0.16", features = ["color", "color-auto"] }
1010
dir-diff = { git = "https://github.com/wcampbell0x2a/dir-diff", branch = "add-checking-permissions" }
1111
tempfile = "3.14.0"
1212
test-assets-ureq = "0.6.0"
13-
toml = "0.8"
13+
toml = "0.9"
1414
test-log = { version = "0.2.16", features = ["trace"] }
1515
tracing = "0.1.40"
1616
libdeflater = "1.22.0"
1717
env_logger = "0.11.5"
1818
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }
19-
nix = { version = "0.30.0", default-features = false, features = ["fs"] }
19+
nix = { version = "0.31.0", default-features = false, features = ["fs"] }
2020
backon = "1.2.0"
2121

2222
[lib]

backhand/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ thiserror = "2.0.1"
2222
flate2 = { version = "1.1.0", optional = true, default-features = false, features = ["zlib-rs"] }
2323
liblzma = { version = "0.4.1", optional = true, default-features = false, features = ["static", "parallel"] }
2424
lzma-adaptive-sys = { version = "0.1.0", optional = true }
25-
lzma-rust2 = { version = "0.15.3", optional = true, features = ["xz", "encoder", "optimization"] }
25+
lzma-rust2 = { version = "0.16.0", optional = true, features = ["xz", "encoder", "optimization"] }
2626
rust-lzo = { version = "0.6.2", optional = true }
2727
zstd = { version = "0.13.2", optional = true }
2828
zstd-safe = { version = "7.2.1", optional = true }
@@ -64,7 +64,7 @@ dir-diff = { git = "https://github.com/wcampbell0x2a/dir-diff", branch = "add-c
6464
tempfile = "3.14.0"
6565
criterion = "0.8"
6666
libdeflater = "1.22.0"
67-
toml = "0.8"
67+
toml = "0.9"
6868

6969
[[bench]]
7070
name = "benchmark"

0 commit comments

Comments
 (0)