Skip to content

Commit 4f3e343

Browse files
authored
Merge branch 'main' into dependabot/go_modules/src/golang.org/x/sys-0.1.0
2 parents a66ca04 + 9b17419 commit 4f3e343

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ require (
2626
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
2727
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
2828
golang.org/x/sys v0.1.0 // indirect
29+
golang.org/x/text v0.3.8 // indirect
2930
gopkg.in/warnings.v0 v0.1.2 // indirect
3031
gopkg.in/yaml.v2 v2.4.0 // indirect
3132
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)