diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24a79032..f4ddc012 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,9 @@ jobs: - name: Lints run: make spellcheck shellcheck helm-lint + - name: License Check + run: make license-test + - name: Go Report Card Tests run: make go-report-card-test @@ -128,9 +131,6 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 - - name: License Check - run: make license-test - - name: Release Linux Assets run: make release env: diff --git a/test/go-report-card-test/Dockerfile b/test/go-report-card-test/Dockerfile index 82e38956..3e55d968 100644 --- a/test/go-report-card-test/Dockerfile +++ b/test/go-report-card-test/Dockerfile @@ -1,4 +1,4 @@ -FROM public.ecr.aws/bitnami/golang:latest +FROM golang:latest WORKDIR /app @@ -12,4 +12,4 @@ RUN go get github.com/gojp/goreportcard/cmd/goreportcard-cli RUN go get -u golang.org/x/tools/cmd/goimports -CMD $GOPATH/bin/goreportcard-cli -v -t 90 \ No newline at end of file +CMD $GOPATH/bin/goreportcard-cli -v -t 90