diff options
author | Alex Savchuk <a.u.savchuk@gmail.com> | 2022-10-07 00:09:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 00:09:43 +0200 |
commit | 48188a6280f367e63936a239976be65317ebabd2 (patch) | |
tree | 8d5055d5731f19c7d46cb83615a2f19dc6948d94 /pkg/exprparser | |
parent | Fix composite input handling (#1345) (diff) | |
download | forgejo-act-48188a6280f367e63936a239976be65317ebabd2.tar.xz forgejo-act-48188a6280f367e63936a239976be65317ebabd2.zip |
fix: support docker create arguments from container.options (#1022) (#1351)
* fix: support docker create arguments from container.options (#1022)
* fix processing of errors, add verbose logging, fix test
* disable linter for code copied from docker/cli
* fix all linter issues
* Add license info
* Add opts_test.go from docker/cli and required testdata
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Diffstat (limited to 'pkg/exprparser')
-rw-r--r-- | pkg/exprparser/interpreter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/exprparser/interpreter.go b/pkg/exprparser/interpreter.go index 6388b55..7b76f3b 100644 --- a/pkg/exprparser/interpreter.go +++ b/pkg/exprparser/interpreter.go @@ -557,7 +557,7 @@ func (impl *interperterImpl) evaluateLogicalCompare(compareNode *actionlint.Logi return nil, fmt.Errorf("Unable to compare incompatibles types '%s' and '%s'", leftValue.Kind(), rightValue.Kind()) } -// nolint:gocyclo +//nolint:gocyclo func (impl *interperterImpl) evaluateFuncCall(funcCallNode *actionlint.FuncCallNode) (interface{}, error) { args := make([]reflect.Value, 0) |