mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
25 lines
625 B
YAML
25 lines
625 B
YAML
name: Govuln
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
govuln:
|
|
name: Run govuln check and Publish
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Running govulncheck
|
|
uses: Templum/govulncheck-action@v1.0.2
|
|
continue-on-error: true
|
|
env:
|
|
DEBUG: "true"
|
|
with:
|
|
go-version: 1.23
|
|
package: ./...
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
fail-on-vuln: true
|
|
|
|
- name: Upload govulncheck report
|
|
uses: actions/upload-artifact@v4.4.0
|
|
with:
|
|
name: raw-report
|
|
path: raw-report.json
|