-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): bootstrap oras for use in ci (#469)
* chore(ci): bootstrap oras for use in ci Signed-off-by: Weston Steimel <[email protected]> * chore: update dependabot config Signed-off-by: Weston Steimel <[email protected]> * port tool management to binny Signed-off-by: Alex Goodman <[email protected]> --------- Signed-off-by: Weston Steimel <[email protected]> Signed-off-by: Alex Goodman <[email protected]> Co-authored-by: Alex Goodman <[email protected]>
- Loading branch information
1 parent
681692e
commit 6fd8427
Showing
13 changed files
with
168 additions
and
457 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
tools: | ||
# we want to use a pinned version of binny to manage the toolchain (so binny manages itself!) | ||
- name: binny | ||
version: | ||
want: v0.8.0 | ||
method: github-release | ||
with: | ||
repo: anchore/binny | ||
|
||
# used for linting | ||
- name: golangci-lint | ||
version: | ||
want: v1.63.4 | ||
method: github-release | ||
with: | ||
repo: golangci/golangci-lint | ||
|
||
# used for showing the changelog at release | ||
- name: glow | ||
version: | ||
want: v2.0.0 | ||
method: github-release | ||
with: | ||
repo: charmbracelet/glow | ||
|
||
# used to release all artifacts | ||
- name: goreleaser | ||
version: | ||
want: v1.26.2 | ||
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 triggering a release | ||
- name: gh | ||
version: | ||
want: v2.65.0 | ||
method: github-release | ||
with: | ||
repo: cli/cli | ||
|
||
# used to upload test fixture cache | ||
- name: oras | ||
version: | ||
want: v1.2.2 | ||
method: github-release | ||
with: | ||
repo: oras-project/oras |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
- package-ecosystem: gomod | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
- package-ecosystem: "gomod" | ||
interval: "daily" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- "dependencies" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
interval: "daily" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- "dependencies" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/.github/actions/boostrap" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 10 | ||
labels: | ||
- "dependencies" |
Oops, something went wrong.