Skip to content

Commit 9b17419

Browse files
authored
Merge pull request #2 from jarpsimoes/dependabot/go_modules/src/golang.org/x/text-0.3.8
Bump golang.org/x/text from 0.3.7 to 0.3.8 in /src
2 parents a1d83a9 + b0767d0 commit 9b17419

File tree

4 files changed

+15
-233
lines changed

4 files changed

+15
-233
lines changed

.github/workflows/docker-image.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,17 @@ jobs:
2323
if: success()
2424
uses: actions/[email protected]
2525
with:
26-
go-version: 1.17.x
26+
go-version: 1.18.x
2727
- name: Checkout code
2828
uses: actions/[email protected]
2929
- name: Calc coverage
3030
run: |
3131
cd src
32+
go test -v ./... -covermode=count -coverprofile=coverage.out
3233
go get github.com/axw/gocov/gocov
3334
go get github.com/AlekSi/gocov-xml
34-
go test -v ./... -covermode=count -coverprofile=coverage.out
35+
go install github.com/axw/gocov/gocov
36+
go install github.com/AlekSi/gocov-xml
3537
gocov convert coverage.out | gocov-xml > coverage.xml
3638
- name: Codecov Reports
3739
uses: codecov/[email protected]

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ selected branch (in variable REPO_BRANCH) and can be pulled new version on defin
1111

1212
## RELEASE NOTES: v0.0.3-alpha
1313

14-
| Feature | Description |
15-
|---------|-------------------------------|
16-
| Done | Add support to proxy redirect |
14+
| Feature | Description |
15+
|---------|---------------------------------------------------|
16+
| Done | Add support to proxy redirect with HTTPS backends |
17+
| FIX | Bump golang.org/x/text from 0.3.7 to 0.3.8 |
1718

1819

1920

src/go.mod

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,19 @@ require (
1515
github.com/emirpasic/gods v1.12.0 // indirect
1616
github.com/go-git/gcfg v1.5.0 // indirect
1717
github.com/go-git/go-billy/v5 v5.3.1 // indirect
18-
github.com/go-logr/logr v1.2.0 // indirect
19-
github.com/gogo/protobuf v1.3.2 // indirect
20-
github.com/google/gofuzz v1.1.0 // indirect
18+
github.com/google/go-cmp v0.5.5 // indirect
2119
github.com/imdario/mergo v0.3.12 // indirect
2220
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
23-
github.com/json-iterator/go v1.1.12 // indirect
2421
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
2522
github.com/mitchellh/go-homedir v1.1.0 // indirect
26-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
27-
github.com/modern-go/reflect2 v1.0.2 // indirect
2823
github.com/pmezard/go-difflib v1.0.0 // indirect
2924
github.com/sergi/go-diff v1.1.0 // indirect
3025
github.com/xanzy/ssh-agent v0.3.0 // indirect
3126
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
3227
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
33-
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
34-
golang.org/x/text v0.3.7 // indirect
35-
gopkg.in/inf.v0 v0.9.1 // indirect
28+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
29+
golang.org/x/text v0.3.8 // indirect
3630
gopkg.in/warnings.v0 v0.1.2 // indirect
3731
gopkg.in/yaml.v2 v2.4.0 // indirect
3832
gopkg.in/yaml.v3 v3.0.1 // indirect
39-
k8s.io/api v0.24.0 // indirect
40-
k8s.io/apimachinery v0.24.0 // indirect
41-
k8s.io/klog/v2 v2.60.1 // indirect
42-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
43-
sigs.k8s.io/controller-runtime v0.12.1 // indirect
44-
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
45-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
4633
)

0 commit comments

Comments
 (0)