File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ replace github.com/shurcooL/vfsgen => github.com/lunny/vfsgen v0.0.0-20220105142
289
289
290
290
replace github.com/blevesearch/zapx/v15 v15.3.6 => github.com/zeripath/zapx/v15 v15.3.6-alignment-fix
291
291
292
- replace github.com/nektos/act => gitea.com/gitea/act v0.243.2 -0.20230329055922-5e76853b55ab
292
+ replace github.com/nektos/act => gitea.com/gitea/act v0.243.3 -0.20230407083103-5c4a96bcb797
293
293
294
294
exclude github.com/gofrs/uuid v3.2.0+incompatible
295
295
Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ codeberg.org/gusted/mcaptcha v0.0.0-20220723083913-4f3072e1d570/go.mod h1:IIAjsi
52
52
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9 /go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU =
53
53
git.sr.ht/~mariusor/go-xsd-duration v0.0.0-20220703122237-02e73435a078 h1:cliQ4HHsCo6xi2oWZYKWW4bly/Ory9FuTpFPRxj/mAg =
54
54
git.sr.ht/~mariusor/go-xsd-duration v0.0.0-20220703122237-02e73435a078 /go.mod h1:g/V2Hjas6Z1UHUp4yIx6bATpNzJ7DYtD0FG3+xARWxs =
55
- gitea.com/gitea/act v0.243.2 -0.20230329055922-5e76853b55ab h1:HDImhO/XpMJrw2PJcADI/wgur9Gro/pegLFaRt8Wpg0 =
56
- gitea.com/gitea/act v0.243.2 -0.20230329055922-5e76853b55ab /go.mod h1:mabw6AZAiDgxGlK83orWLrNERSPvgBJzEUS3S7u2bHI =
55
+ gitea.com/gitea/act v0.243.3 -0.20230407083103-5c4a96bcb797 h1:QdQ+pHxpbIi2qsgZbYVxqYV7trfW3P5M/T4AfpoM7iw =
56
+ gitea.com/gitea/act v0.243.3 -0.20230407083103-5c4a96bcb797 /go.mod h1:mabw6AZAiDgxGlK83orWLrNERSPvgBJzEUS3S7u2bHI =
57
57
gitea.com/go-chi/binding v0.0.0-20221013104517-b29891619681 h1:MMSPgnVULVwV9kEBgvyEUhC9v/uviZ55hPJEMjpbNR4 =
58
58
gitea.com/go-chi/binding v0.0.0-20221013104517-b29891619681 /go.mod h1:77TZu701zMXWJFvB8gvTbQ92zQ3DQq/H7l5wAEjQRKc =
59
59
gitea.com/go-chi/cache v0.0.0-20210110083709-82c4c9ce2d5e /go.mod h1:k2V/gPDEtXGjjMGuBJiapffAXTv76H4snSmlJRLUhH0 =
Original file line number Diff line number Diff line change @@ -17,8 +17,18 @@ import (
17
17
"github.com/nektos/act/pkg/jobparser"
18
18
"github.com/nektos/act/pkg/model"
19
19
"github.com/nektos/act/pkg/workflowpattern"
20
+ "gopkg.in/yaml.v3"
20
21
)
21
22
23
+ func init () {
24
+ model .OnDecodeNodeError = func (node yaml.Node , out interface {}, err error ) {
25
+ // Log the error instead of panic or fatal.
26
+ // It will be a big job to refactor act/pkg/model to return decode error,
27
+ // so we just log the error and return empty value, and improve it later.
28
+ log .Error ("Failed to decode node %v into %T: %v" , node , out , err )
29
+ }
30
+ }
31
+
22
32
func ListWorkflows (commit * git.Commit ) (git.Entries , error ) {
23
33
tree , err := commit .SubTree (".gitea/workflows" )
24
34
if _ , ok := err .(git.ErrNotExist ); ok {
You can’t perform that action at this time.
0 commit comments