1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

fix: use code.forgejo.org/oci

Otherwise it may get rate limited in the CI verifying it works
This commit is contained in:
Earl Warren 2025-01-15 14:27:11 +01:00 committed by earl-warren
parent d58552be82
commit 1f85564111

View file

@ -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)