1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-08-11 17:50:58 +00:00

Merge pull request 'chore: notify long delays in sync' (#93) from earl-warren/act:wip-cascade into main

Reviewed-on: https://code.forgejo.org/forgejo/act/pulls/93
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>
This commit is contained in:
earl-warren 2025-05-27 05:51:58 +00:00
commit cade5051a8

View file

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