mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
updated go.mod dependencies (#3167)
Co-authored-by: Johannes Dillmann <j.dillmann@sap.com>
This commit is contained in:
parent
db6b465ff1
commit
6fc8a4be2d
@ -15,7 +15,6 @@ import (
|
||||
piperhttp "github.com/SAP/jenkins-library/pkg/http"
|
||||
ws "github.com/SAP/jenkins-library/pkg/whitesource"
|
||||
|
||||
"github.com/360EntSecGroup-Skylar/excelize/v2"
|
||||
"github.com/SAP/jenkins-library/pkg/command"
|
||||
"github.com/SAP/jenkins-library/pkg/log"
|
||||
"github.com/SAP/jenkins-library/pkg/npm"
|
||||
@ -25,6 +24,7 @@ import (
|
||||
"github.com/SAP/jenkins-library/pkg/toolrecord"
|
||||
"github.com/SAP/jenkins-library/pkg/versioning"
|
||||
"github.com/pkg/errors"
|
||||
"github.com/xuri/excelize/v2"
|
||||
)
|
||||
|
||||
// ScanOptions is just used to make the lines less long
|
||||
|
72
go.mod
72
go.mod
@ -3,63 +3,49 @@ module github.com/SAP/jenkins-library
|
||||
go 1.15
|
||||
|
||||
require (
|
||||
github.com/360EntSecGroup-Skylar/excelize/v2 v2.3.1
|
||||
github.com/GoogleContainerTools/container-diff v0.15.0
|
||||
github.com/Jeffail/gabs/v2 v2.6.0
|
||||
github.com/Masterminds/goutils v1.1.0 // indirect
|
||||
github.com/Masterminds/semver v1.5.0 // indirect
|
||||
github.com/GoogleContainerTools/container-diff v0.17.0
|
||||
github.com/Jeffail/gabs/v2 v2.6.1
|
||||
github.com/Masterminds/sprig v2.22.0+incompatible
|
||||
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
|
||||
github.com/bmatcuk/doublestar v1.3.2
|
||||
github.com/bmatcuk/doublestar v1.3.4
|
||||
github.com/bndr/gojenkins v1.1.1-0.20210520222939-90ed82bfdff6
|
||||
github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017
|
||||
github.com/elliotchance/orderedmap v1.3.0
|
||||
github.com/evanphx/json-patch v4.9.0+incompatible
|
||||
github.com/getsentry/sentry-go v0.7.0
|
||||
github.com/docker/cli v20.10.9+incompatible
|
||||
github.com/elliotchance/orderedmap v1.4.0
|
||||
github.com/evanphx/json-patch v4.11.0+incompatible
|
||||
github.com/getsentry/sentry-go v0.11.0
|
||||
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
|
||||
github.com/go-git/go-billy/v5 v5.0.0
|
||||
github.com/go-git/go-git/v5 v5.1.0
|
||||
github.com/go-openapi/runtime v0.19.22
|
||||
github.com/go-openapi/spec v0.19.9 // indirect
|
||||
github.com/go-openapi/strfmt v0.19.5
|
||||
github.com/go-openapi/validate v0.19.11 // indirect
|
||||
github.com/go-git/go-billy/v5 v5.3.1
|
||||
github.com/go-git/go-git/v5 v5.4.2
|
||||
github.com/go-openapi/runtime v0.20.0
|
||||
github.com/go-openapi/strfmt v0.20.3
|
||||
github.com/go-playground/locales v0.14.0
|
||||
github.com/go-playground/universal-translator v0.18.0
|
||||
github.com/go-playground/validator/v10 v10.9.0
|
||||
github.com/google/go-cmp v0.5.4
|
||||
github.com/google/go-containerregistry v0.1.3
|
||||
github.com/google/go-cmp v0.5.6
|
||||
github.com/google/go-containerregistry v0.6.0
|
||||
github.com/google/go-github/v32 v32.1.0
|
||||
github.com/google/uuid v1.1.2
|
||||
github.com/gorilla/websocket v1.4.2 // indirect
|
||||
github.com/hashicorp/go-retryablehttp v0.6.7
|
||||
github.com/hashicorp/vault v1.7.2
|
||||
github.com/hashicorp/vault/api v1.1.0
|
||||
github.com/huandu/xstrings v1.3.2 // indirect
|
||||
github.com/imdario/mergo v0.3.11 // indirect
|
||||
github.com/influxdata/influxdb-client-go/v2 v2.4.0
|
||||
github.com/google/uuid v1.3.0
|
||||
github.com/hashicorp/go-retryablehttp v0.7.0
|
||||
github.com/hashicorp/vault v1.8.4
|
||||
github.com/hashicorp/vault/api v1.1.2-0.20210713235431-1fc8af4c041f
|
||||
github.com/influxdata/influxdb-client-go/v2 v2.5.1
|
||||
github.com/jarcoal/httpmock v1.0.8
|
||||
github.com/magiconair/properties v1.8.4
|
||||
github.com/magiconair/properties v1.8.5
|
||||
github.com/magicsong/color-glog v0.0.1 // indirect
|
||||
github.com/magicsong/sonargo v0.0.1
|
||||
github.com/mailru/easyjson v0.7.6 // indirect
|
||||
github.com/microsoft/azure-devops-go-api/azuredevops v1.0.0-b5
|
||||
github.com/motemen/go-nuts v0.0.0-20200601065735-3df31f16cb2f
|
||||
github.com/pelletier/go-toml v1.9.3
|
||||
github.com/motemen/go-nuts v0.0.0-20210915132349-615a782f2c69
|
||||
github.com/pelletier/go-toml v1.9.4
|
||||
github.com/piper-validation/fortify-client-go v0.0.0-20210114140201-1261216783c6
|
||||
github.com/pkg/errors v0.9.1
|
||||
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
|
||||
github.com/sirupsen/logrus v1.7.0
|
||||
github.com/smartystreets/assertions v1.0.0 // indirect
|
||||
github.com/spf13/cobra v1.0.0
|
||||
github.com/sirupsen/logrus v1.8.1
|
||||
github.com/spf13/cobra v1.2.1
|
||||
github.com/spf13/pflag v1.0.5
|
||||
github.com/stretchr/testify v1.7.0
|
||||
github.com/testcontainers/testcontainers-go v0.5.1
|
||||
golang.org/x/mod v0.3.0
|
||||
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
|
||||
google.golang.org/genproto v0.0.0-20201002142447-3860012362da // indirect
|
||||
google.golang.org/grpc v1.32.0 // indirect
|
||||
gopkg.in/ini.v1 v1.61.0
|
||||
gopkg.in/yaml.v2 v2.3.0
|
||||
github.com/testcontainers/testcontainers-go v0.10.0
|
||||
github.com/xuri/excelize/v2 v2.4.1
|
||||
golang.org/x/mod v0.5.1
|
||||
golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1
|
||||
gopkg.in/ini.v1 v1.63.2
|
||||
gopkg.in/yaml.v2 v2.4.0
|
||||
)
|
||||
|
||||
replace golang.org/x/sys => golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a
|
||||
|
@ -65,9 +65,9 @@ spec:
|
||||
type: "[]string"
|
||||
default:
|
||||
- signature
|
||||
#possibleValues:
|
||||
# - signature
|
||||
# - source
|
||||
# possibleValues:
|
||||
# - signature
|
||||
# - source
|
||||
scope:
|
||||
- PARAMETERS
|
||||
- STAGES
|
||||
@ -146,13 +146,13 @@ spec:
|
||||
type: "[]string"
|
||||
default:
|
||||
- BLOCKER
|
||||
#possibleValues:
|
||||
# - ALL
|
||||
# - BLOCKER
|
||||
# - CRITICAL
|
||||
# - MAJOR
|
||||
# - MINOR
|
||||
# - NONE
|
||||
# possibleValues:
|
||||
# - ALL
|
||||
# - BLOCKER
|
||||
# - CRITICAL
|
||||
# - MAJOR
|
||||
# - MINOR
|
||||
# - NONE
|
||||
scope:
|
||||
- PARAMETERS
|
||||
- STAGES
|
||||
|
Loading…
Reference in New Issue
Block a user