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:
commit
cade5051a8
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
baseImage = "node:16-buster-slim"
|
baseImage = "code.forgejo.org/oci/node:20-bookworm"
|
||||||
platforms map[string]string
|
platforms map[string]string
|
||||||
logLevel = log.DebugLevel
|
logLevel = log.DebugLevel
|
||||||
workdir = "testdata"
|
workdir = "testdata"
|
||||||
|
@ -566,7 +566,7 @@ func (f *maskJobLoggerFactory) WithJobLogger() *log.Logger {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMaskValues(t *testing.T) {
|
func TestMaskValues(t *testing.T) {
|
||||||
assertNoSecret := func(text string, secret string) {
|
assertNoSecret := func(text, secret string) {
|
||||||
index := strings.Index(text, "composite secret")
|
index := strings.Index(text, "composite secret")
|
||||||
if index > -1 {
|
if index > -1 {
|
||||||
fmt.Printf("\nFound Secret in the given text:\n%s\n", text)
|
fmt.Printf("\nFound Secret in the given text:\n%s\n", text)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue