-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1441 from cyberark/golang-117
Update golang to 1.17
- Loading branch information
Showing
12 changed files
with
109 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,14 +47,12 @@ jobs: | |
${{ runner.os }}-go- | ||
# Uninstall old go | ||
- run: brew uninstall [email protected] | ||
# Install go1.16 | ||
- run: brew install go@1.16 | ||
# Add go1.16 to PATH | ||
- run: echo "/usr/local/opt/go@1.16/bin" >> $GITHUB_PATH | ||
# Install go1.17 | ||
- run: brew install go@1.17 | ||
# Add go1.17 to PATH | ||
- run: echo "/usr/local/opt/go@1.17/bin" >> $GITHUB_PATH | ||
# Get go version | ||
- run: go version | ||
# Fix go1.16 module bug (https://github.com/golang/go/issues/44129#issuecomment-865249631) | ||
- run: go env -w GOFLAGS=-mod=mod | ||
# Download go modules | ||
- run: go mod download | ||
# Run keychain tests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.16 | ||
FROM golang:1.17 | ||
|
||
WORKDIR / | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,113 @@ | ||
module github.com/cyberark/secretless-broker | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.17 // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect | ||
github.com/aws/aws-sdk-go v1.15.79 | ||
github.com/cenkalti/backoff v2.2.1+incompatible | ||
github.com/codegangsta/cli v1.20.0 | ||
github.com/containerd/containerd v1.4.11 // indirect | ||
github.com/cyberark/conjur-api-go v0.5.2 | ||
github.com/cyberark/conjur-authn-k8s-client v0.19.1 | ||
github.com/cyberark/summon v0.7.0 | ||
github.com/denisenkom/go-mssqldb v0.0.0-20191001013358-cfbb681360f0 | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v1.4.2-0.20191231165639-e6f6c35b7902 | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 | ||
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/hashicorp/vault/api v1.0.2 | ||
github.com/heptiolabs/healthcheck v0.0.0-20180807145615-6ff867650f40 | ||
github.com/imdario/mergo v0.3.8 // indirect | ||
github.com/joho/godotenv v1.2.0 | ||
github.com/keybase/go-keychain v0.0.0-20201121013009-976c83ec27a6 | ||
github.com/lib/pq v0.0.0-20180123210206-19c8e9ad0095 | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.1 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/pkg/profile v1.2.1 | ||
github.com/smartystreets/goconvey v1.6.4 | ||
github.com/stretchr/objx v0.2.0 // indirect | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 | ||
google.golang.org/grpc v1.41.0 // indirect | ||
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect | ||
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
gotest.tools v2.2.0+incompatible // indirect | ||
k8s.io/api v0.22.3 | ||
k8s.io/apiextensions-apiserver v0.22.3 | ||
k8s.io/apimachinery v0.22.3 | ||
k8s.io/client-go v0.22.3 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.17 // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/containerd/containerd v1.4.11 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/evanphx/json-patch v4.11.0+incompatible // indirect | ||
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa // indirect | ||
github.com/go-logr/logr v0.4.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/google/go-cmp v0.5.5 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/googleapis/gnostic v0.5.5 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/go-multierror v1.0.0 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.5.3 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.0 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/vault/sdk v0.1.8 // indirect | ||
github.com/imdario/mergo v0.3.8 // indirect | ||
github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 // indirect | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.1 // indirect | ||
github.com/pierrec/lz4 v2.0.5+incompatible // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v1.11.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.26.0 // indirect | ||
github.com/prometheus/procfs v0.6.0 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/objx v0.2.0 // indirect | ||
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect | ||
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect | ||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
google.golang.org/appengine v1.6.5 // indirect | ||
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect | ||
google.golang.org/grpc v1.41.0 // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/square/go-jose.v2 v2.3.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
gotest.tools v2.2.0+incompatible // indirect | ||
k8s.io/klog/v2 v2.9.0 // indirect | ||
k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e // indirect | ||
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect | ||
sigs.k8s.io/yaml v1.2.0 // indirect | ||
) | ||
|
||
replace github.com/denisenkom/go-mssqldb => ./third_party/go-mssqldb | ||
|
||
// 2/19/2019: cert on honnef.co -- one of grpc's dependencies -- expired. | ||
// This is our fix: | ||
replace honnef.co/go/tools => github.com/dominikh/go-tools v0.0.1-2019.2.3 | ||
|
||
go 1.16 | ||
go 1.17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,12 @@ | ||
-----BEGIN RSA PRIVATE KEY----- | ||
MIIEowIBAAKCAQEAtxkTOUJO/dzPf8t9lrq1+oIRLRWW6263qh5LyCbRm7JEL1gS | ||
UMw5BM4hVgDQmCchrjpYRCDja9TL7eXK05M9n7ew9+14nTeZ6UlqiyyDxa/8yNA1 | ||
/TVWqAw9J0E1yScCngKHqY4zVlv8W/qZxvPVeG+Ub+2TCQ+qABJzbJNVQ5rdobSK | ||
Y1v3FCp/Iecgkb3vp+l/3HgF6vaJW6gabjpzWPoaeeVtqSZwggQDRAXozB4itJGl | ||
qZafog4BxCBev+bdReCgSeSG8PFpOLGECNlE63ktAngbcLTO5z/l5guZH4LgGozp | ||
bZsNQpbNyrPPBaH0vvaQo/odNYXmWondzhvHtwIDAQABAoIBAEb8MbfBPV6ufMPO | ||
4KHPQT4drwsLk7cy9YG+vSKb6ieytTylqHQquPBj+gidyEE06pnhhNbk6Uak+WsB | ||
6+Ca9Qk27iUwq9JH/CO1ktjiKTQ7RoWUM1o3k6ETHaJaZb/Wn+0ijfXua3jPsMb4 | ||
ISZA4kIPAD1kndyldgMRJC6z8BqFB9m30Yx7lf75yXotQKYMpaZymJGMUrI5F8gl | ||
nKOB+HJiimlqhddVGK7QRv85x6ZL0YuyJrjgf4gqglOVThkTUfo7kS85PYLZt3J8 | ||
76FViY7g5D+odAgq9tAW1sNEGFZAHO6WEMZguHnq6f+O8AEW/D3B89bTN5V3sLvi | ||
XyMA9gECgYEA4tFYXjtD2vdXeKMmC2rWYFZA7xFmXK3/TZW++InRLcXIQAUlgB3D | ||
Qw2usTk+WwiRm32omaN6xHtqK4UlROjgKrHG5K1YhQ5tHbwQ9s2Cvn471iBLv7C2 | ||
Ea/BQI3GHfcGPIMXYRGYtGlHoZSmAFBnRgO91tYtj4zwQxpFBfqZTd0CgYEAzqe9 | ||
G1j4KlqRz84pmSYgMANjk/nFNImVHhke7ZGQUzves6U5U2jwjskJ+jAsFDYiNl9/ | ||
bkASQo9TIGvhnOtS/9KDXvgCNN3E1gDvhdVm29KyLzh0Dyte1HsQoduMIozVwW2s | ||
/rkDAOH6+2ulgnSs2G/LP64hhszdJuw/aYFKxKMCgYAiYzrSjomrGPTaBWIvOPNn | ||
h6wwkqLCSl76lElvxPVBy0qg6ibVVa3U7K4fkF4zzwjEWjjFklN6lntyPa141RWn | ||
Y2yUHvPcuGMyruCjimTYHKtVu2/AkDoKVGsoLlZrFJiNdBKHVPOh5pRFmxPP2GDP | ||
7KFLgQ1HRkbm5YSxc1zqwQKBgQCyXGwHUn6+b3UyGgolOJbHWeV0Ljta4PRnCd97 | ||
xAsBC8dm3c/ggc4+Lp4B5dnlh+N3cm0Vxw77i6B/dx0+xozYZ+Ui7oNZBZ+B5UTW | ||
Ch3A1NUdlGf3P8OVOLJeQJNuroc/b13EbAJ/nIt2vK4ZLoKQO8z8pVoicmbd1UHV | ||
2dWiaQKBgDsBcRz1TrAeqU79Xrikc1vb/hv0364pL0OwSA/p32rSWsX5M8eMZJ2V | ||
qYjR1h7KnNqdEcUp41Sqh/0NlEo3Zg55nDNNe6buWZOFVaWFZ55E95vlJ/9M5wkE | ||
odnHYmbRkHhmJ1TbP/YYZIvULuzi9tfZl+ynXFzI7YJyql2HGTFa | ||
-----END RSA PRIVATE KEY----- | ||
-----BEGIN OPENSSH PRIVATE KEY----- | ||
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAArAAAABNlY2RzYS | ||
1zaGEyLW5pc3RwNTIxAAAACG5pc3RwNTIxAAAAhQQAqs4F95BAKDK2SN8YcX/ITQbJ+Uwh | ||
r3mtN1U9pkfg1CYLb4KPYnOnNXdDae/xjTklb8aUUB19EDpej7dtoUYLYxYBDheRvhtp31 | ||
RyF4e9Uo1hlquG9A9wyCkQSn/7+2DkyuyFEJYuA3BizJ4/LJkmC/dcJRnqEZs1VjIdzGiP | ||
eJCLGR0AAAEYj3azRI92s0QAAAATZWNkc2Etc2hhMi1uaXN0cDUyMQAAAAhuaXN0cDUyMQ | ||
AAAIUEAKrOBfeQQCgytkjfGHF/yE0GyflMIa95rTdVPaZH4NQmC2+Cj2JzpzV3Q2nv8Y05 | ||
JW/GlFAdfRA6Xo+3baFGC2MWAQ4Xkb4bad9UcheHvVKNYZarhvQPcMgpEEp/+/tg5MrshR | ||
CWLgNwYsyePyyZJgv3XCUZ6hGbNVYyHcxoj3iQixkdAAAAQgGHJeRjOk7d0Sc3E0GW547L | ||
5yjk9s7TOh9ldT3cKF6UazfHzpTd0sxw98/3CyBX8rFrIEQfVAaM2JCM9MUE0MyhYwAAAB | ||
hTaGxvbW8uSGVpZ2hATkctU0hMT01PLUgBAg== | ||
-----END OPENSSH PRIVATE KEY----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC3GRM5Qk793M9/y32WurX6ghEtFZbrbreqHkvIJtGbskQvWBJQzDkEziFWANCYJyGuOlhEIONr1Mvt5crTkz2ft7D37XidN5npSWqLLIPFr/zI0DX9NVaoDD0nQTXJJwKeAoepjjNWW/xb+pnG89V4b5Rv7ZMJD6oAEnNsk1VDmt2htIpjW/cUKn8h5yCRve+n6X/ceAXq9olbqBpuOnNY+hp55W2pJnCCBANEBejMHiK0kaWplp+iDgHEIF6/5t1F4KBJ5Ibw8Wk4sYQI2UTreS0CeBtwtM7nP+XmC5kfguAajOltmw1Cls3Ks88FofS+9pCj+h01heZaid3OG8e3 [email protected] | ||
ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBACqzgX3kEAoMrZI3xhxf8hNBsn5TCGvea03VT2mR+DUJgtvgo9ic6c1d0Np7/GNOSVvxpRQHX0QOl6Pt22hRgtjFgEOF5G+G2nfVHIXh71SjWGWq4b0D3DIKRBKf/v7YOTK7IUQli4DcGLMnj8smSYL91wlGeoRmzVWMh3MaI94kIsZHQ== Shlomo.Heigh@NG-SHLOMO-H |