2024-05-09 20:25:00 +00:00
|
|
|
tools:
|
|
|
|
# we want to use a pinned version of binny to manage the toolchain (so binny manages itself!)
|
|
|
|
- name: binny
|
|
|
|
version:
|
2024-06-06 18:58:34 +00:00
|
|
|
want: v0.8.0
|
2024-05-09 20:25:00 +00:00
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: anchore/binny
|
|
|
|
|
|
|
|
# used to produce SBOMs during release
|
|
|
|
- name: syft
|
|
|
|
version:
|
|
|
|
want: latest
|
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: anchore/syft
|
|
|
|
|
|
|
|
# used to sign mac binaries at release
|
|
|
|
- name: quill
|
|
|
|
version:
|
2024-07-15 13:08:44 +00:00
|
|
|
want: v0.4.2
|
2024-05-09 20:25:00 +00:00
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: anchore/quill
|
|
|
|
|
|
|
|
# used for linting
|
|
|
|
- name: golangci-lint
|
|
|
|
version:
|
2024-08-23 13:08:35 +00:00
|
|
|
want: v1.60.3
|
2024-05-09 20:25:00 +00:00
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: golangci/golangci-lint
|
|
|
|
|
|
|
|
# used for showing the changelog at release
|
|
|
|
- name: glow
|
|
|
|
version:
|
2024-08-29 12:21:08 +00:00
|
|
|
want: v2.0.0
|
2024-05-09 20:25:00 +00:00
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: charmbracelet/glow
|
|
|
|
|
|
|
|
# used for signing the checksums file at release
|
|
|
|
- name: cosign
|
|
|
|
version:
|
2024-08-07 18:27:33 +00:00
|
|
|
want: v2.4.0
|
2024-05-09 20:25:00 +00:00
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: sigstore/cosign
|
|
|
|
|
|
|
|
# used in integration tests to verify JSON schemas
|
|
|
|
- name: yajsv
|
|
|
|
version:
|
|
|
|
want: v1.4.1
|
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: neilpa/yajsv
|
|
|
|
|
|
|
|
# used to release all artifacts
|
|
|
|
- name: goreleaser
|
|
|
|
version:
|
2024-08-16 17:58:10 +00:00
|
|
|
want: v2.2.0
|
2024-05-09 20:25:00 +00:00
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: goreleaser/goreleaser
|
|
|
|
|
|
|
|
# used for organizing imports during static analysis
|
|
|
|
- name: gosimports
|
|
|
|
version:
|
|
|
|
want: v0.3.8
|
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: rinchsan/gosimports
|
|
|
|
|
|
|
|
# used at release to generate the changelog
|
|
|
|
- name: chronicle
|
|
|
|
version:
|
|
|
|
want: v0.8.0
|
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: anchore/chronicle
|
|
|
|
|
|
|
|
# used during static analysis for license compliance
|
|
|
|
- name: bouncer
|
|
|
|
version:
|
|
|
|
want: v0.4.0
|
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: wagoodman/go-bouncer
|
|
|
|
|
|
|
|
# used for running all local and CI tasks
|
|
|
|
- name: task
|
|
|
|
version:
|
2024-07-02 14:42:21 +00:00
|
|
|
want: v3.38.0
|
2024-05-09 20:25:00 +00:00
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: go-task/task
|
|
|
|
|
|
|
|
# used for triggering a release
|
|
|
|
- name: gh
|
|
|
|
version:
|
2024-08-21 17:09:13 +00:00
|
|
|
want: v2.55.0
|
2024-05-09 20:25:00 +00:00
|
|
|
method: github-release
|
|
|
|
with:
|
|
|
|
repo: cli/cli
|
2024-06-06 18:58:34 +00:00
|
|
|
|
|
|
|
# used for integration tests
|
|
|
|
- name: skopeo
|
|
|
|
version:
|
2024-08-23 13:08:35 +00:00
|
|
|
want: v1.16.1
|
2024-06-06 18:58:34 +00:00
|
|
|
method: go-install
|
|
|
|
with:
|
|
|
|
module: github.com/containers/skopeo
|
|
|
|
entrypoint: cmd/skopeo
|
|
|
|
args:
|
|
|
|
- "-tags"
|
|
|
|
- containers_image_openpgp
|
|
|
|
env:
|
|
|
|
- CGO_ENABLED=0
|
2024-06-07 19:53:54 +00:00
|
|
|
- GO_DYN_FLAGS=""
|