diff --git a/.github/workflows/auto-tag-main.yml b/.github/workflows/auto-tag-main.yml index 440ead8..f521642 100644 --- a/.github/workflows/auto-tag-main.yml +++ b/.github/workflows/auto-tag-main.yml @@ -13,7 +13,7 @@ jobs: with: fetch-depth: "0" - name: Bump version and push tag - uses: anothrNick/github-tag-action@1.61.0 + uses: anothrNick/github-tag-action@1.64.0 env: DEFAULT_BUMP: patch GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/Makefile b/Makefile index fed2703..765353c 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,8 @@ coverage: go test ./... -coverprofile=coverage.out go tool cover -html=coverage.out +update_deps: + go get -t -u ./... SMOCKER_VERSION=0.18.2 diff --git a/go.mod b/go.mod index bcd6425..d3ad3a5 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/churmd/smockerclient -go 1.20 +go 1.21 -require github.com/stretchr/testify v1.8.0 +require github.com/stretchr/testify v1.8.4 require ( github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/go.sum b/go.sum index 5164829..79f263c 100644 --- a/go.sum +++ b/go.sum @@ -8,6 +8,8 @@ github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSS github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=