Skip to content

Commit af32d96

Browse files
lint: unnecessary fmt.sprintf
Signed-off-by: Ramon Petgrave <[email protected]>
1 parent 7acf187 commit af32d96

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cli/slsa-verifier/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func check(err error) {
2020

2121
func envWarnings() {
2222
if options.TestingEnabled() {
23-
slog.Warn(fmt.Sprintf("WARNING: Insecure SLSA_VERIFIER_TESTING is enabled.\n"))
23+
slog.Warn("WARNING: Insecure SLSA_VERIFIER_TESTING is enabled.\n")
2424
}
2525
}
2626

cli/slsa-verifier/verify/verify_npm_package.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func (c *VerifyNpmPackageCommand) Exec(ctx context.Context, tarballs []string) (
5555
}
5656

5757
if c.AttestationsPath == "" {
58-
slog.Error(fmt.Sprintf("--attestations-path is required.\n\n"))
58+
slog.Error("--attestations-path is required.\n\n")
5959
return nil, err
6060
}
6161
provenanceOpts := &options.ProvenanceOpts{

verifiers/internal/gha/provenance.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ func VerifyProvenanceSignature(ctx context.Context, trustedRoot *TrustedRoot,
222222
}
223223

224224
// Fallback on using the redis search index to get matching UUIDs.
225-
slog.Warn(fmt.Sprintf("No certificate provided, trying Redis search index to find entries by subject digest\n"))
225+
slog.Warn("No certificate provided, trying Redis search index to find entries by subject digest\n")
226226

227227
// Verify the provenance and return the signing certificate.
228228
return SearchValidSignedAttestation(ctx, artifactHash,

0 commit comments

Comments
 (0)