From 1f855641112980784ebf6ce398210db709e27a08 Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Wed, 15 Jan 2025 14:27:11 +0100 Subject: [PATCH] fix: use code.forgejo.org/oci Otherwise it may get rate limited in the CI verifying it works --- act/runner/runner_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/act/runner/runner_test.go b/act/runner/runner_test.go index ecb5ce57..4c73bfc6 100644 --- a/act/runner/runner_test.go +++ b/act/runner/runner_test.go @@ -20,7 +20,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" @@ -540,7 +540,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)