diff options
author | Ryan (hackercat) <me@hackerc.at> | 2021-06-11 01:12:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-11 01:12:05 +0200 |
commit | a9fe0383478554705100dc4416b235b2265f718c (patch) | |
tree | 66b016b9e3281d5584e8309d2d2d339be4c191e1 /pkg/common | |
parent | Test fixups for Windows/Forks (#681) (diff) | |
download | forgejo-act-a9fe0383478554705100dc4416b235b2265f718c.tar.xz forgejo-act-a9fe0383478554705100dc4416b235b2265f718c.zip |
Update images, fix extrapath (#723)v0.2.23
* fix: typo
* fix: remove debug for git references
it generates a massive amount of logs
* feat: read values from env
allows to test act on GHA when it's not a main repo
* fix: merge extrapath with PATH
* fix(tests): add additional shells for testing
* fix(image): update images
pin node to major version only, current node version: 12.22.1
replace most images with `node:12-buster-slim` to prevent
errors on macOS runner due to DockerHub pull limit
replace ocaml image
Co-authored-by: Casey Lee <cplee@nektos.com>
Diffstat (limited to 'pkg/common')
-rw-r--r-- | pkg/common/git.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/common/git.go b/pkg/common/git.go index d563ff1..c87906a 100644 --- a/pkg/common/git.go +++ b/pkg/common/git.go @@ -86,7 +86,7 @@ func FindGitRef(file string) (string, error) { if r == nil || err != nil { break } - log.Debugf("Reference: name=%s sha=%s", r.Name().String(), r.Hash().String()) + // log.Debugf("Reference: name=%s sha=%s", r.Name().String(), r.Hash().String()) if r.Hash().String() == ref { if r.Name().IsTag() { refTag = r.Name().String() |