diff --git a/act/runner/runner_test.go b/act/runner/runner_test.go index cf1a161c..9234d3b3 100644 --- a/act/runner/runner_test.go +++ b/act/runner/runner_test.go @@ -22,7 +22,7 @@ import ( ) var ( - baseImage = "node:16-buster-slim" + baseImage = "code.forgejo.org/oci/node:20-bookworm" platforms map[string]string logLevel = log.DebugLevel workdir = "testdata" @@ -566,7 +566,7 @@ func (f *maskJobLoggerFactory) WithJobLogger() *log.Logger { } func TestMaskValues(t *testing.T) { - assertNoSecret := func(text string, secret string) { + assertNoSecret := func(text, secret string) { index := strings.Index(text, "composite secret") if index > -1 { fmt.Printf("\nFound Secret in the given text:\n%s\n", text)