mirror of
https://github.com/anchore/grype
synced 2024-11-10 06:34:13 +00:00
24d5d4ffb2
* upgrade tool management Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * update version file on release Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
262 lines
No EOL
7.3 KiB
YAML
262 lines
No EOL
7.3 KiB
YAML
release:
|
|
prerelease: auto
|
|
draft: false
|
|
|
|
env:
|
|
# required to support multi architecture docker builds
|
|
- DOCKER_CLI_EXPERIMENTAL=enabled
|
|
- CGO_ENABLED=0
|
|
|
|
builds:
|
|
- id: linux-build
|
|
dir: ./cmd/grype
|
|
binary: grype
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
- ppc64le
|
|
- s390x
|
|
# set the modified timestamp on the output binary to the git timestamp to ensure a reproducible build
|
|
mod_timestamp: &build-timestamp '{{ .CommitTimestamp }}'
|
|
ldflags: &build-ldflags |
|
|
-w
|
|
-s
|
|
-extldflags '-static'
|
|
-X main.version={{.Version}}
|
|
-X main.gitCommit={{.Commit}}
|
|
-X main.buildDate={{.Date}}
|
|
-X main.gitDescription={{.Summary}}
|
|
|
|
- id: darwin-build
|
|
dir: ./cmd/grype
|
|
binary: grype
|
|
goos:
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
mod_timestamp: *build-timestamp
|
|
ldflags: *build-ldflags
|
|
hooks:
|
|
post:
|
|
- cmd: .tool/quill sign-and-notarize "{{ .Path }}" --dry-run={{ .IsSnapshot }} --ad-hoc={{ .IsSnapshot }} -vv
|
|
env:
|
|
- QUILL_LOG_FILE=/tmp/quill-{{ .Target }}.log
|
|
|
|
- id: windows-build
|
|
dir: ./cmd/grype
|
|
binary: grype
|
|
goos:
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
mod_timestamp: *build-timestamp
|
|
ldflags: *build-ldflags
|
|
|
|
archives:
|
|
- id: linux-archives
|
|
builds:
|
|
- linux-build
|
|
|
|
- id: darwin-archives
|
|
builds:
|
|
- darwin-build
|
|
|
|
- id: windows-archives
|
|
format: zip
|
|
builds:
|
|
- windows-build
|
|
|
|
nfpms:
|
|
- license: "Apache 2.0"
|
|
maintainer: "Anchore, Inc"
|
|
homepage: &website "https://github.com/anchore/grype"
|
|
description: &description "A vulnerability scanner for container images and filesystems"
|
|
formats:
|
|
- rpm
|
|
- deb
|
|
|
|
brews:
|
|
- tap:
|
|
owner: anchore
|
|
name: homebrew-grype
|
|
token: "{{.Env.GITHUB_BREW_TOKEN}}"
|
|
ids:
|
|
- darwin-archives
|
|
- linux-archives
|
|
homepage: *website
|
|
description: *description
|
|
license: "Apache License 2.0"
|
|
|
|
dockers:
|
|
- image_templates:
|
|
- anchore/grype:debug
|
|
- anchore/grype:{{.Tag}}-debug
|
|
- ghcr.io/anchore/grype:debug
|
|
- ghcr.io/anchore/grype:{{.Tag}}-debug
|
|
goarch: amd64
|
|
dockerfile: Dockerfile.debug
|
|
use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/amd64"
|
|
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
|
|
- image_templates:
|
|
- anchore/grype:debug-arm64v8
|
|
- anchore/grype:{{.Tag}}-debug-arm64v8
|
|
- ghcr.io/anchore/grype:debug-arm64v8
|
|
- ghcr.io/anchore/grype:{{.Tag}}-debug-arm64v8
|
|
goarch: arm64
|
|
dockerfile: Dockerfile.debug
|
|
use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/arm64/v8"
|
|
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
|
|
- image_templates:
|
|
- anchore/grype:debug-ppc64le
|
|
- anchore/grype:{{.Tag}}-debug-ppc64le
|
|
- ghcr.io/anchore/grype:debug-ppc64le
|
|
- ghcr.io/anchore/grype:{{.Tag}}-debug-ppc64le
|
|
goarch: ppc64le
|
|
dockerfile: Dockerfile.debug
|
|
use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/ppc64le"
|
|
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
|
|
- image_templates:
|
|
- anchore/grype:debug-s390x
|
|
- anchore/grype:{{.Tag}}-debug-s390x
|
|
- ghcr.io/anchore/grype:debug-s390x
|
|
- ghcr.io/anchore/grype:{{.Tag}}-debug-s390x
|
|
goarch: s390x
|
|
dockerfile: Dockerfile.debug
|
|
use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/s390x"
|
|
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
|
|
- image_templates:
|
|
- anchore/grype:latest
|
|
- anchore/grype:{{.Tag}}
|
|
- ghcr.io/anchore/grype:latest
|
|
- ghcr.io/anchore/grype:{{.Tag}}
|
|
goarch: amd64
|
|
dockerfile: Dockerfile
|
|
use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/amd64"
|
|
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
|
|
- image_templates:
|
|
- anchore/grype:{{.Tag}}-arm64v8
|
|
- ghcr.io/anchore/grype:{{.Tag}}-arm64v8
|
|
goarch: arm64
|
|
dockerfile: Dockerfile
|
|
use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/arm64/v8"
|
|
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
|
|
- image_templates:
|
|
- anchore/grype:{{.Tag}}-ppc64le
|
|
- ghcr.io/anchore/grype:{{.Tag}}-ppc64le
|
|
goarch: ppc64le
|
|
dockerfile: Dockerfile
|
|
use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/ppc64le"
|
|
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
|
|
- image_templates:
|
|
- anchore/grype:{{.Tag}}-s390x
|
|
- ghcr.io/anchore/grype:{{.Tag}}-s390x
|
|
goarch: s390x
|
|
dockerfile: Dockerfile
|
|
use: buildx
|
|
build_flag_templates:
|
|
- "--platform=linux/s390x"
|
|
- "--build-arg=BUILD_DATE={{.Date}}"
|
|
- "--build-arg=BUILD_VERSION={{.Version}}"
|
|
- "--build-arg=VCS_REF={{.FullCommit}}"
|
|
- "--build-arg=VCS_URL={{.GitURL}}"
|
|
|
|
docker_manifests:
|
|
- name_template: anchore/grype:latest
|
|
image_templates:
|
|
- anchore/grype:{{.Tag}}
|
|
- anchore/grype:{{.Tag}}-arm64v8
|
|
- anchore/grype:{{.Tag}}-ppc64le
|
|
- anchore/grype:{{.Tag}}-s390x
|
|
|
|
- name_template: anchore/grype:debug
|
|
- anchore/grype:{{.Tag}}-debug
|
|
- anchore/grype:{{.Tag}}-debug-arm64v8
|
|
- anchore/grype:{{.Tag}}-debug-ppc64le
|
|
- anchore/grype:{{.Tag}}-debug-s390x
|
|
|
|
- name_template: anchore/grype:{{.Tag}}
|
|
image_templates:
|
|
- anchore/grype:{{.Tag}}
|
|
- anchore/grype:{{.Tag}}-arm64v8
|
|
- anchore/grype:{{.Tag}}-ppc64le
|
|
- anchore/grype:{{.Tag}}-s390x
|
|
|
|
- name_template: ghcr.io/anchore/grype:latest
|
|
image_templates:
|
|
- ghcr.io/anchore/grype:{{.Tag}}
|
|
- ghcr.io/anchore/grype:{{.Tag}}-arm64v8
|
|
- ghcr.io/anchore/grype:{{.Tag}}-ppc64le
|
|
- ghcr.io/anchore/grype:{{.Tag}}-s390x
|
|
|
|
- name_template: ghcr.io/anchore/grype:debug
|
|
image_templates:
|
|
- ghcr.io/anchore/grype:{{.Tag}}-debug
|
|
- ghcr.io/anchore/grype:{{.Tag}}-debug-arm64v8
|
|
- ghcr.io/anchore/grype:{{.Tag}}-debug-ppc64le
|
|
- ghcr.io/anchore/grype:{{.Tag}}-debug-s390x
|
|
|
|
- name_template: ghcr.io/anchore/grype:{{.Tag}}
|
|
image_templates:
|
|
- ghcr.io/anchore/grype:{{.Tag}}
|
|
- ghcr.io/anchore/grype:{{.Tag}}-arm64v8
|
|
- ghcr.io/anchore/grype:{{.Tag}}-ppc64le
|
|
- ghcr.io/anchore/grype:{{.Tag}}-s390x
|
|
|
|
|
|
signs:
|
|
- cmd: .tool/cosign
|
|
signature: "${artifact}.sig"
|
|
certificate: "${artifact}.pem"
|
|
args:
|
|
- "sign-blob"
|
|
- "--oidc-issuer=https://token.actions.githubusercontent.com"
|
|
- "--output-certificate=${certificate}"
|
|
- "--output-signature=${signature}"
|
|
- "${artifact}"
|
|
- "--yes"
|
|
artifacts: checksum |