Skip to content

Commit

Permalink
gosec.yml commitlendi
Browse files Browse the repository at this point in the history
  • Loading branch information
BozdoganMehmetozkan committed Aug 28, 2024
1 parent e14b2a7 commit f336d2e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions git-secrets
Submodule git-secrets added at 5357e1
23 changes: 23 additions & 0 deletions gosec.yml
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 ./...

0 comments on commit f336d2e

Please sign in to comment.