diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e3718cb4..9593c0d7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,17 +31,6 @@ jobs: keyserver-options auto-key-retrieve EOF - - - name: Verify tag signature - run: | - # NOTE: Solve the problem with Github action checkout - # https://github.com/actions/checkout/issues/290 - git fetch --tags --force - - version=${GITHUB_REF#refs/tags/*} - git show $version - git tag -v $version - - name: Log into registry ${{ env.REGISTRY }} uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a diff --git a/.goreleaser.yml b/.goreleaser.yml index cf5fbbd0..863dac5d 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -26,6 +26,15 @@ builds: binary: kubeaudit ldflags: - -s -w -X github.com/Shopify/kubeaudit/cmd.Version={{.Version}} -X github.com/Shopify/kubeaudit/cmd.Commit={{.Commit}} -X github.com/Shopify/kubeaudit/cmd.BuildDate={{.Date}} + +changelog: + sort: asc + filters: + exclude: + - "^docs:" + - "^test:" + - ^Merge + archives: - format: tar.gz name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{.Arm }}{{ end }}' @@ -40,11 +49,3 @@ snapshot: name_template: SNAPSHOT-{{ .Commit }} checksum: name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt' - -changelog: - sort: asc - filters: - exclude: - - "^docs:" - - "^test:" - - ^Merge diff --git a/CHANGELOG.md b/CHANGELOG.md index 60e8d230..4f0d57fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Unreleased +* tba + +# 0.22.0 * support for metadata info on sarif result * Makefile fix for go mod tidy @@ -6,9 +9,7 @@ * deprecate kubernetes.io in override labels -# v0.22.0 +# 0.21.0 +* the Seccomp auditor has been updated to flag missing Seccomp profiles in securityContext instead of deprecated seccomp annotations. Thank you @Ser87ch, for your amazing contribution! 👏 -* support for metadata info on sarif result -* Makefile fix for go mod tidy -* test without Kind by default -* deprecate kubernetes.io in override labels +* Override added for the unconfined apparmor profile! Once again, thank you @Ser87ch! 😍