Skip to content

Commit

Permalink
ci: secrets management (#142)
Browse files Browse the repository at this point in the history
- switch CI to use context for secret management
- allow outside contributor PRs and dependabot to bypass buildevents
- add go 17 to test matrix
  • Loading branch information
vreynolds authored Sep 27, 2021
1 parent bfcd44c commit 24f5d44
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ filters_publish: &filters_publish
matrix_goversions: &matrix_goversions
matrix:
parameters:
goversion: ["12", "13", "14", "15", "16"]
goversion: ["12", "13", "14", "15", "16", "17"]

# Default version of Go to use for Go steps
default_goversion: &default_goversion "12"
default_goversion: &default_goversion "16"

executors:
go:
Expand Down Expand Up @@ -101,7 +101,14 @@ workflows:
- setup:
<<: *filters_always
- watch:
<<: *filters_always
context: Honeycomb Secrets for Public Repos
filters:
tags:
only: /.*/
branches:
ignore:
- /pull\/.*/
- /dependabot\/.*/
requires:
- setup
- test:
Expand Down

0 comments on commit 24f5d44

Please sign in to comment.