Skip to content

Commit 9b51300

Browse files
build(deps): bump cloud-mta v1.0.3 (#902)
* build(deps): bump cloud-mta v1.0.3 * Upgrade pip * ci: revert pip upgrade * fix: update dependencies * ci: update cimg/python:3.10.0 * ci: fix missing dependency * ci: revert last commit * ci: add missing dependency * build: use go.1.17 images Co-authored-by: alexander gilin <alexander.gilin@sap.com>
1 parent ffa3b72 commit 9b51300

File tree

3 files changed

+46
-50
lines changed

3 files changed

+46
-50
lines changed

.circleci/config.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
jobs:
44
build:
55
docker:
6-
- image: circleci/golang:1.16
6+
- image: cimg/go:1.16
77

88
environment:
99
working_directory: ~/go/src/github.com/SAP/cloud-mta-build-tool
@@ -16,13 +16,14 @@ jobs:
1616
command: |
1717
go mod vendor
1818
- run: go test -v ./...
19-
- run: sudo chown circleci:circleci /go/bin
19+
- run: sudo chown circleci:circleci $GOPATH/bin
2020
- run: make tools
2121
- run: make lint
2222
- run:
2323
name: cov install coverge deps
2424
command: |
2525
go get golang.org/x/tools/cmd/cover
26+
go get golang.org/x/net/html/charset
2627
go get github.com/mattn/goveralls
2728
go get github.com/modocache/gover
2829
go install github.com/mattn/goveralls
@@ -46,7 +47,7 @@ jobs:
4647

4748
compliance:
4849
docker:
49-
- image: circleci/python:3.6.4
50+
- image: cimg/python:3.10.0
5051
working_directory: ~/go/src/github.com/SAP/cloud-mta-build-tool
5152
steps:
5253
- checkout
@@ -58,7 +59,7 @@ jobs:
5859
5960
release:
6061
docker:
61-
- image: circleci/golang:1.16
62+
- image: cimg/go:1.16
6263
working_directory: ~/go/src/github.com/SAP/cloud-mta-build-tool
6364
steps:
6465
- add_ssh_keys:
@@ -122,7 +123,7 @@ jobs:
122123
123124
publish:
124125
docker:
125-
- image: circleci/node:13.1.0
126+
- image: cimg/node:13.1.0
126127
working_directory: ~/go/src/github.com/SAP/cloud-mta-build-tool
127128
steps:
128129
- add_ssh_keys:
@@ -146,7 +147,7 @@ jobs:
146147
147148
image:
148149
docker:
149-
- image: circleci/golang:1.16
150+
- image: cimg/go:1.16
150151
working_directory: ~/go/src/github.com/SAP/cloud-mta-build-tool
151152
steps:
152153
- checkout

go.mod

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,22 @@ module github.com/SAP/cloud-mta-build-tool
33
go 1.13
44

55
require (
6-
github.com/SAP/cloud-mta v1.0.1
6+
github.com/SAP/cloud-mta v1.0.3
77
github.com/deckarep/golang-set v1.7.1
8+
github.com/json-iterator/go v1.1.12 // indirect
89
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
9-
github.com/magiconair/properties v1.8.4 // indirect
10-
github.com/mattn/go-colorable v0.1.8 // indirect
10+
github.com/mattn/go-colorable v0.1.11 // indirect
1111
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
12-
github.com/mitchellh/mapstructure v1.4.1 // indirect
1312
github.com/onsi/ginkgo v1.16.2
1413
github.com/onsi/gomega v1.13.0
15-
github.com/pelletier/go-toml v1.8.1 // indirect
1614
github.com/pkg/errors v0.9.1
1715
github.com/sirupsen/logrus v1.8.1
18-
github.com/spf13/afero v1.5.1 // indirect
19-
github.com/spf13/cast v1.3.1 // indirect
16+
github.com/smallfish/simpleyaml v0.1.0 // indirect
2017
github.com/spf13/cobra v1.1.3
2118
github.com/spf13/viper v1.7.1
2219
github.com/x-cray/logrus-prefixed-formatter v0.5.2
23-
golang.org/x/crypto v0.0.0-20210314154223-e6e6c4f2bb5b // indirect
24-
gopkg.in/ini.v1 v1.62.0 // indirect
20+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
21+
golang.org/x/sys v0.0.0-20211023085530-d6a326fbbf70 // indirect
22+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
2523
gopkg.in/yaml.v2 v2.4.0
26-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
2724
)

0 commit comments

Comments
 (0)