-
Notifications
You must be signed in to change notification settings - Fork 18
44 lines (40 loc) · 1.01 KB
/
run-govulncheck.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Run govulncheck
on:
pull_request:
branches: [main, sm-integration]
jobs:
run-govulncheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get changed files
id: changed-files-specific
uses: tj-actions/changed-files@90a06d6ba9543371ab4df8eeca0be07ca6054959
with:
files: |
.github/**
api/**
cmd/**
config/**
controllers/**
deployments/**
examples/**
hack/**
internal/**
module-chart/**
module-resources/**
scripts/**
config.yaml
Dockerfile
go.mod
go.sum
main.go
Makefile
**/*.go
**/*.sh
- name: Run govulncheck
if: steps.changed-files-specific.outputs.any_modified == 'true'
uses: golang/govulncheck-action@v1
with:
go-version-file: 'go.mod'