File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Run Gosec
2
+ on :
3
+ workflow_dispatch :
4
+ schedule :
5
+ # ┌───────────── minute (0 - 59)
6
+ # │ ┌───────────── hour (0 - 23)
7
+ # │ │ ┌───────────── day of the month (1 - 31)
8
+ # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
9
+ # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
10
+ # │ │ │ │ │
11
+ # │ │ │ │ │
12
+ # │ │ │ │ │
13
+ # * * * * *
14
+ - cron : ' 30 2 * * *'
15
+ jobs :
16
+ tests :
17
+ runs-on : ubuntu-latest
18
+ env :
19
+ GO111MODULE : on
20
+ steps :
21
+ - name : Checkout Source
22
+ uses : actions/checkout@v2
23
+ - name : Run Gosec Security Scanner
24
+ uses : securego/gosec@master
25
+ with :
26
+ args : ./...
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
16
16
- A new AWS X-Ray ID Generator (#459 )
17
17
- Migrate CircleCI jobs to GitHub Actions (#476 )
18
18
- Add CodeQL GitHub Action (#506 )
19
+ - Add gosec workflow to GitHub Actions (#507 )
19
20
20
21
### Fixed
21
22
You can’t perform that action at this time.
0 commit comments