Skip to content

Commit b255a2a

Browse files
Merge pull request #61 from 0xPolygon/security-update
Security update
2 parents 5398230 + 2318d49 commit b255a2a

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @0xPolygon/core-cdk
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Security Build
2+
on:
3+
push:
4+
workflow_dispatch: {}
5+
6+
jobs:
7+
govuln:
8+
name: Run govuln check and Publish
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Running govulncheck
13+
uses: Templum/govulncheck-action@v0.0.8
14+
continue-on-error: true
15+
env:
16+
DEBUG: "true"
17+
with:
18+
go-version: 1.21.x
19+
vulncheck-version: latest
20+
package: ./...
21+
github-token: ${{ secrets.GITHUB_TOKEN }}
22+
fail-on-vuln: true

0 commit comments

Comments
 (0)