-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e14b2a7
commit f336d2e
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
Submodule git-secrets
added at
5357e1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: GoSec Analysis | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
gosec: | ||
name: Run GoSec Security Analysis | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: '1.20' # veya kullandığınız Go sürümünü belirleyin | ||
|
||
- name: Install GoSec | ||
run: go install github.com/securego/gosec/v2/cmd/gosec@latest | ||
|
||
- name: Run GoSec | ||
run: gosec ./... |