mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 23:56:43 +00:00
* chg: update deps / fix root folder for docker integration tests * chg: bump bor version * chg: bump deps * chg: bump deps and adapt geth cmd verkle * chg: update go version in GH CIs * chg: update go version in makefile, travis and dockerfile * chg: fix tests
25 lines
621 B
YAML
25 lines
621 B
YAML
name: Govuln
|
|
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@v1.0.0
|
|
continue-on-error: true
|
|
env:
|
|
DEBUG: "true"
|
|
with:
|
|
go-version: 1.22
|
|
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
|