From d9cb2e23107731b83131a3042c235c1ed74d91fd Mon Sep 17 00:00:00 2001 From: Javier Rodriguez Date: Tue, 3 Mar 2026 07:05:19 +0100 Subject: [PATCH] fix(log-message): Update CAS credentials logging message Signed-off-by: Javier Rodriguez --- app/cli/pkg/action/action.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cli/pkg/action/action.go b/app/cli/pkg/action/action.go index aef2d9707..bdca71999 100644 --- a/app/cli/pkg/action/action.go +++ b/app/cli/pkg/action/action.go @@ -108,7 +108,7 @@ func getCASBackend(ctx context.Context, client pb.AttestationServiceClient, work }) if err != nil { // Log warning but don't fail - will fall back to inline storage - logger.Warn().Err(err).Msg("failed to get CAS credentials for PR metadata, will store inline") + logger.Warn().Err(err).Msg("failed to get CAS credentials, will store inline") return nil, nil, fmt.Errorf("getting upload creds: %w", err) }