2021-12-07 08:50:16 -05:00
name : test
2022-08-18 14:03:28 -04:00
concurrency :
group : ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress : true
2021-12-07 08:50:16 -05:00
on :
workflow_dispatch :
push :
branches :
- 'master'
2023-02-09 12:03:11 -05:00
- '[0-9]+.[0-9]+'
2021-12-07 08:50:16 -05:00
tags :
- 'v*'
pull_request :
jobs :
ctn :
2022-08-20 09:55:20 -04:00
runs-on : ubuntu-20.04
2021-12-07 08:50:16 -05:00
steps :
-
name : Checkout
2022-08-20 09:55:20 -04:00
uses : actions/checkout@v3
2021-12-07 08:50:16 -05:00
-
name : Set up Docker Buildx
2022-08-20 09:55:20 -04:00
uses : docker/setup-buildx-action@v2
2021-12-07 08:50:16 -05:00
-
name : Test
2023-04-18 05:03:03 -04:00
uses : docker/bake-action@v3
2021-12-07 08:50:16 -05:00
with :
targets : test-coverage
-
name : Send to Codecov
2022-08-20 09:55:20 -04:00
uses : codecov/codecov-action@v3
2021-12-07 08:50:16 -05:00
with :
file : ./build/coverage/coverage.txt
host :
runs-on : ${{ matrix.os }}
env :
GOPATH : ${{ github.workspace }}
GOBIN : ${{ github.workspace }}/bin
GO111MODULE : auto
strategy :
fail-fast : false
matrix :
os :
2022-08-20 09:55:20 -04:00
- macos-11
# - windows-2022 # FIXME: some tests are failing on the Windows runner, as well as on Appveyor since June 24, 2018: https://ci.appveyor.com/project/docker/cli/history
2021-12-07 08:50:16 -05:00
steps :
-
name : Prepare git
if : matrix.os == 'windows-latest'
run : |
git config --system core.autocrlf false
git config --system core.eol lf
-
name : Checkout
2022-08-20 09:55:20 -04:00
uses : actions/checkout@v3
2021-12-07 08:50:16 -05:00
with :
path : ${{ env.GOPATH }}/src/github.com/docker/cli
-
name : Set up Go
2022-08-20 09:55:20 -04:00
uses : actions/setup-go@v3
2021-12-07 08:50:16 -05:00
with :
update go to go1.20.6
go1.20.6 (released 2023-07-11) includes a security fix to the net/http package,
as well as bug fixes to the compiler, cgo, the cover tool, the go command,
the runtime, and the crypto/ecdsa, go/build, go/printer, net/mail, and text/template
packages. See the Go 1.20.6 milestone on our issue tracker for details.
https://github.com/golang/go/issues?q=milestone%3AGo1.20.6+label%3ACherryPickApproved
Full diff: https://github.com/golang/go/compare/go1.20.5...go1.20.6
These minor releases include 1 security fixes following the security policy:
net/http: insufficient sanitization of Host header
The HTTP/1 client did not fully validate the contents of the Host header.
A maliciously crafted Host header could inject additional headers or entire
requests. The HTTP/1 client now refuses to send requests containing an
invalid Request.Host or Request.URL.Host value.
Thanks to Bartek Nowotarski for reporting this issue.
Includes security fixes for [CVE-2023-29406 ][1] and Go issue https://go.dev/issue/60374
[1]: https://github.com/advisories/GHSA-f8f7-69v5-w4vx
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit 680fafdc9caadcabe90b51d752ea8e379239b62e)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-07-13 10:53:08 -04:00
go-version : 1.20 .6
2021-12-07 08:50:16 -05:00
-
name : Test
run : |
go test -coverprofile=/tmp/coverage.txt $(go list ./... | grep -vE '/vendor/|/e2e/')
go tool cover -func=/tmp/coverage.txt
working-directory : ${{ env.GOPATH }}/src/github.com/docker/cli
shell : bash
-
name : Send to Codecov
2022-08-20 09:55:20 -04:00
uses : codecov/codecov-action@v3
2021-12-07 08:50:16 -05:00
with :
file : /tmp/coverage.txt
working-directory : ${{ env.GOPATH }}/src/github.com/docker/cli