mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
* dev: add: codeQL * dev: chg: solve codeQL high vulns * dev: chg: remove js scan after dismissing relative issues * dev: chg: fix size allocation checks * dev: chg: fix size allocation checks * dev: chg: use math.MaxUint8 for incorrect coversion for integer * dev: chg: revert on one check / return error on trezorExchange func * dev: chg: remove checks on logger as not harmful * dev: chg: bump govuln action go versions * dev: chg: name of CI for govuln * dev: chg: bump x/net to 0.17 as per PR-1038 * dev: chg: remove snyk files
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.21
|
|
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
|