Compare commits

...

2 Commits

Author SHA1 Message Date
Markus Pesch c0d8dfb638
fix: update go sums
continuous-integration/drone/push Build is passing Details
2022-08-08 18:50:51 +02:00
CSRBot 7d6291d1d6 chore(deps): update module github.com/sijms/go-ora/v2 to v2.5.1
renovate/artifacts Artifact file update failure
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is failing Details
2022-08-07 14:31:23 +02:00
4 changed files with 11 additions and 7 deletions

View File

@ -6,9 +6,6 @@ import (
"git.cryptic.systems/volker.raschek/db-wait/pkg/dbwait"
"github.com/spf13/cobra"
_ "github.com/lib/pq"
_ "github.com/sijms/go-ora/v2"
)
func Execute(version string) error {

3
go.mod
View File

@ -4,11 +4,12 @@ go 1.17
require (
github.com/lib/pq v1.10.6
github.com/sijms/go-ora/v2 v2.4.28
github.com/sijms/go-ora/v2 v2.5.1
github.com/spf13/cobra v1.5.0
)
require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/sijms/go-ora v1.3.2 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)

6
go.sum
View File

@ -4,8 +4,10 @@ github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANyt
github.com/lib/pq v1.10.6 h1:jbk+ZieJ0D7EVGJYpL9QTz7/YW6UHbmdnZWYyK5cdBs=
github.com/lib/pq v1.10.6/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/sijms/go-ora/v2 v2.4.28 h1:u+1MgJqqMTD93Zc/9aoLC03hD1E9KAxtegWhwj98y/Q=
github.com/sijms/go-ora/v2 v2.4.28/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk=
github.com/sijms/go-ora v1.3.2 h1:v9Ca63acRbrE5vYlHpABzlOvt8bI1Sj5PCVDwaAJjp8=
github.com/sijms/go-ora v1.3.2/go.mod h1:ZGVmJgxUfyGIVmYgA7MVGEq6BX5aoFECRMtHW5DEcs4=
github.com/sijms/go-ora/v2 v2.5.1 h1:L+6bi/yVbm+E+Yphz5ALXvyXGH7PkNsDZyuBVpx25Ws=
github.com/sijms/go-ora/v2 v2.5.1/go.mod h1:EHxlY6x7y9HAsdfumurRfTd+v8NrEOTR3Xl4FWlH6xk=
github.com/spf13/cobra v1.5.0 h1:X+jTBEBqF0bHN+9cSMgmfuvv2VHJ9ezmFNf9Y/XstYU=
github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM=
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=

View File

@ -1,6 +1,10 @@
package main
import "git.cryptic.systems/volker.raschek/db-wait/cmd"
import (
"git.cryptic.systems/volker.raschek/db-wait/cmd"
_ "github.com/lib/pq"
_ "github.com/sijms/go-ora/v2"
)
var version string