mirror of
https://github.com/anchore/grype
synced 2024-11-12 23:37:06 +00:00
Update chronicle to v0.8.0 (#1507)
* use annotated tags, update chronicle, fix cache keys Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * dont show the title in the release notes Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
This commit is contained in:
parent
3a6f3a3278
commit
970fbd9166
4 changed files with 9 additions and 9 deletions
|
@ -1 +1,2 @@
|
||||||
enforce-v0: true # don't make breaking-change label bump major version before 1.0.
|
enforce-v0: true # don't make breaking-change label bump major version before 1.0.
|
||||||
|
title: ""
|
||||||
|
|
8
.github/actions/bootstrap/action.yaml
vendored
8
.github/actions/bootstrap/action.yaml
vendored
|
@ -63,9 +63,9 @@ runs:
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/go/pkg/mod
|
~/go/pkg/mod
|
||||||
key: ${{ inputs.cache-key-prefix }}-${{ runner.os }}-go-${{ inputs.go-version }}-${{ hashFiles('**/go.sum') }}
|
key: ${{ inputs.cache-key-prefix }}-${{ runner.os }}-go-mod-${{ inputs.go-version }}-${{ hashFiles('**/go.sum') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ inputs.cache-key-prefix }}-${{ runner.os }}-go-${{ inputs.go-version }}-
|
${{ inputs.cache-key-prefix }}-${{ runner.os }}-go-mod-${{ inputs.go-version }}-
|
||||||
|
|
||||||
- name: (cache-miss) Bootstrap project tools
|
- name: (cache-miss) Bootstrap project tools
|
||||||
shell: bash
|
shell: bash
|
||||||
|
@ -79,9 +79,9 @@ runs:
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.cache/go-build
|
~/.cache/go-build
|
||||||
key: ${{ inputs.cache-key-prefix }}-${{ inputs.build-cache-key-prefix }}-${{ runner.os }}-go-${{ inputs.go-version }}-${{ hashFiles('**/go.sum') }}
|
key: ${{ inputs.cache-key-prefix }}-${{ inputs.build-cache-key-prefix }}-${{ runner.os }}-go-build-${{ inputs.go-version }}-${{ hashFiles('**/go.sum') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ inputs.cache-key-prefix }}-${{ inputs.build-cache-key-prefix }}-${{ runner.os }}-go-${{ inputs.go-version }}-
|
${{ inputs.cache-key-prefix }}-${{ inputs.build-cache-key-prefix }}-${{ runner.os }}-go-build-${{ inputs.go-version }}-
|
||||||
|
|
||||||
- name: (cache-miss) Bootstrap go dependencies
|
- name: (cache-miss) Bootstrap go dependencies
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
7
.github/workflows/release.yaml
vendored
7
.github/workflows/release.yaml
vendored
|
@ -6,9 +6,6 @@ on:
|
||||||
description: tag the latest commit on main with the given version (prefixed with v)
|
description: tag the latest commit on main with the given version (prefixed with v)
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
env:
|
|
||||||
GO_VERSION: "1.21.x"
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
|
@ -121,7 +118,9 @@ jobs:
|
||||||
|
|
||||||
- name: Tag release
|
- name: Tag release
|
||||||
run: |
|
run: |
|
||||||
git tag ${{ github.event.inputs.version }}
|
git config user.name "anchoreci"
|
||||||
|
git config user.email "anchoreci@users.noreply.github.com"
|
||||||
|
git tag -a ${{ github.event.inputs.version }} -m "Release ${{ github.event.inputs.version }}"
|
||||||
git push origin --tags
|
git push origin --tags
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -13,7 +13,7 @@ GLOW_CMD = $(TEMP_DIR)/glow
|
||||||
GOLANGCILINT_VERSION := v1.54.2
|
GOLANGCILINT_VERSION := v1.54.2
|
||||||
GOSIMPORTS_VERSION := v0.3.8
|
GOSIMPORTS_VERSION := v0.3.8
|
||||||
BOUNCER_VERSION := v0.4.0
|
BOUNCER_VERSION := v0.4.0
|
||||||
CHRONICLE_VERSION := v0.7.0
|
CHRONICLE_VERSION := v0.8.0
|
||||||
GORELEASER_VERSION := v1.20.0
|
GORELEASER_VERSION := v1.20.0
|
||||||
YAJSV_VERSION := v1.4.1
|
YAJSV_VERSION := v1.4.1
|
||||||
QUILL_VERSION := v0.4.1
|
QUILL_VERSION := v0.4.1
|
||||||
|
|
Loading…
Reference in a new issue