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
2 changes: 1 addition & 1 deletion .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
go-version: '~1.25.0'
- uses: golangci/golangci-lint-action@v9
with:
version: v2.4
version: v2.8
5 changes: 3 additions & 2 deletions pkg/mutate/squashfs_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023-2025 Sylabs Inc. All rights reserved.
// Copyright 2023-2026 Sylabs Inc. All rights reserved.
//
// SPDX-License-Identifier: Apache-2.0

Expand Down Expand Up @@ -36,7 +36,8 @@ func testLayer(tb testing.TB, name string, digest v1.Hash) v1.Layer {
func diffSquashFS(tb testing.TB, pathA, pathB string, diffArgs ...string) {
tb.Helper()

args := []string{"-a", pathA, "-b", pathB}
args := make([]string, 0, 4+len(diffArgs))
args = append(args, "-a", pathA, "-b", pathB)
args = append(args, diffArgs...)

cmd := exec.CommandContext(tb.Context(), "sqfsdiff", args...)
Expand Down