Skip to content

Commit

Permalink
Bump github.com/goyek/goyek/v2 from 2.0.0-rc.10 to 2.0.0-rc.11 in /bu…
Browse files Browse the repository at this point in the history
…ild (#1584)

* Bump github.com/goyek/goyek/v2 from 2.0.0-rc.10 to 2.0.0-rc.11 in /build

Bumps [github.com/goyek/goyek/v2](https://github.com/goyek/goyek) from 2.0.0-rc.10 to 2.0.0-rc.11.
- [Release notes](https://github.com/goyek/goyek/releases)
- [Changelog](https://github.com/goyek/goyek/blob/main/CHANGELOG.md)
- [Commits](goyek/goyek@v2.0.0-rc.10...v2.0.0-rc.11)

---
updated-dependencies:
- dependency-name: github.com/goyek/goyek/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update main.go

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Robert Pająk <[email protected]>
  • Loading branch information
dependabot[bot] and pellared authored Nov 14, 2022
1 parent 29a6e22 commit 4e29049
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.19
require (
github.com/client9/misspell v0.3.4
github.com/golangci/golangci-lint v1.50.1
github.com/goyek/goyek/v2 v2.0.0-rc.10
github.com/goyek/goyek/v2 v2.0.0-rc.11
github.com/goyek/x v0.1.1
github.com/wadey/gocovmerge v0.0.0-20160331181800-b5bfa59ec0ad
)
Expand Down
4 changes: 2 additions & 2 deletions build/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ github.com/gostaticanalysis/nilerr v0.1.1/go.mod h1:wZYb6YI5YAxxq0i1+VJbY0s2YONW
github.com/gostaticanalysis/testutil v0.3.1-0.20210208050101-bfb5c8eec0e4/go.mod h1:D+FIZ+7OahH3ePw/izIEeH5I06eKs1IKI4Xr64/Am3M=
github.com/gostaticanalysis/testutil v0.4.0 h1:nhdCmubdmDF6VEatUNjgUZBJKWRqugoISdUv3PPQgHY=
github.com/goyek/goyek/v2 v2.0.0-rc.9/go.mod h1:qtHlK7t/dYs1Dw7mLXjEVmgE3nccNa7mQW/RmasOoYg=
github.com/goyek/goyek/v2 v2.0.0-rc.10 h1:cpNa6jLQPq30a7LkAlsAoXL0FxB4yg/zy4eWULNh8wI=
github.com/goyek/goyek/v2 v2.0.0-rc.10/go.mod h1:qtHlK7t/dYs1Dw7mLXjEVmgE3nccNa7mQW/RmasOoYg=
github.com/goyek/goyek/v2 v2.0.0-rc.11 h1:PMCXgjeuhKgdWTelqh31kK/8dWCOvLpMqtEHgLQB0IY=
github.com/goyek/goyek/v2 v2.0.0-rc.11/go.mod h1:qtHlK7t/dYs1Dw7mLXjEVmgE3nccNa7mQW/RmasOoYg=
github.com/goyek/x v0.1.1 h1:0zHFG9klerC/W7MDxMBqh24vixJIJB6SOEOQfKLThG8=
github.com/goyek/x v0.1.1/go.mod h1:QMOv+BBvRk0PWQpBoxOjD1gHiXHqORNyOLClJb4WKiA=
github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=
Expand Down
4 changes: 4 additions & 0 deletions build/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ package main

import (
"flag"
"os"

"github.com/goyek/goyek/v2"
"github.com/goyek/x/boot"
Expand All @@ -30,6 +31,9 @@ const (
var flagSkipDocker = flag.Bool("skip-docker", false, "skip tasks and tests using Docker")

func main() {
if err := os.Chdir(".."); err != nil {
panic(err)
}
goyek.SetDefault(all)
boot.Main()
}

0 comments on commit 4e29049

Please sign in to comment.