-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improvements in code coverage * Refacotored to support multiple enrichers * Experimental openai enrichment, Retreives vulnerability explainations from OpenAI * Updates dependencies and versions * Adds enrich flag to CLI * Adds AI rendered html report * Changes http client to resty * Fixes test cases for Snyk * Fixes latest version check * Fixes epss test cases and moves epss requests to resty
- Loading branch information
Showing
56 changed files
with
396,373 additions
and
917 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Release | |
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
- "v*" | ||
|
||
permissions: | ||
contents: write | ||
|
@@ -12,36 +12,30 @@ jobs: | |
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- | ||
name: Set up Go | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.22' | ||
go-version: "1.23" | ||
check-latest: true | ||
- run: go version | ||
- | ||
name: Generate SBOM | ||
- name: Generate SBOM | ||
uses: anchore/sbom-action@v0 | ||
with: | ||
artifact-name: bomber.cyclonedx.json | ||
path: . | ||
format: cyclonedx-json | ||
- | ||
name: Release SBOM | ||
- name: Release SBOM | ||
uses: anchore/sbom-action/publish-sbom@v0 | ||
with: | ||
sbom-artifact-match: ".*\\.cyclonedx.json$" | ||
- | ||
name: GoReleaser Action | ||
uses: goreleaser/[email protected] | ||
- name: GoReleaser Action | ||
uses: goreleaser/[email protected] | ||
with: | ||
version: ${{ env.GITHUB_REF_NAME }} | ||
args: release --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PUBLISHER_TOKEN }} | ||
|
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 |
---|---|---|
|
@@ -27,3 +27,5 @@ coverage.html | |
coverage.lcov | ||
|
||
*.log | ||
|
||
__debug_bin* |
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,8 +1,7 @@ | ||
project_name: bomber | ||
|
||
builds: | ||
- | ||
binary: bomber | ||
- binary: bomber | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
|
@@ -20,26 +19,23 @@ universal_binaries: | |
- replace: true | ||
|
||
brews: | ||
- | ||
name: bomber | ||
- name: bomber | ||
homepage: "https://github.com/devops-kung-fu/bomber" | ||
tap: | ||
owner: devops-kung-fu | ||
name: homebrew-tap | ||
commit_author: | ||
name: djschleen | ||
email: [email protected] | ||
name: dkfm | ||
email: [email protected] | ||
|
||
checksum: | ||
name_template: 'checksums.txt' | ||
name_template: "checksums.txt" | ||
|
||
nfpms: | ||
- | ||
maintainer: DevOps Kung Fu Mafia <[email protected]> | ||
- maintainer: DevOps Kung Fu Mafia <[email protected]> | ||
description: Scans SBOMs for security vulnerabilities. | ||
homepage: https://github.com/devops-kung-fu/bomber | ||
license: MPL | ||
formats: | ||
- deb | ||
- rpm | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.