mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
23 lines
518 B
YAML
23 lines
518 B
YAML
name: Govuln
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
govulncheck:
|
|
name: Run govulncheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.23.6"
|
|
check-latest: true
|
|
- uses: actions/checkout@v4
|
|
- uses: technote-space/get-diff-action@v6
|
|
with:
|
|
PATTERNS: |
|
|
**/*.go
|
|
go.mod
|
|
go.sum
|
|
Makefile
|
|
- name: govulncheck
|
|
run: make vulncheck
|
|
if: "env.GIT_DIFF != ''"
|