mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-30 16:43:46 +00:00
25 lines
629 B
YAML
25 lines
629 B
YAML
name: Security CI
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
govuln:
|
|
name: Run govuln check and Publish
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Running govulncheck
|
|
uses: Templum/govulncheck-action@v0.10.1
|
|
continue-on-error: true
|
|
env:
|
|
DEBUG: "true"
|
|
with:
|
|
go-version: 1.20.5
|
|
package: ./...
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
fail-on-vuln: true
|
|
|
|
- name: Upload govulncheck report
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: raw-report
|
|
path: raw-report.json
|