mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-19 09:06:14 +00:00
fix: replace unavailable gosec GitHub Action with direct installation
- Remove securecodewarrior/github-action-gosec@master (repository not found) - Install gosec directly using go install - Run gosec ./... command directly instead of through action - This provides the same security scanning functionality with better reliability Fixes the security scan job failure due to missing third-party action.
This commit is contained in:
@@ -118,10 +118,11 @@ jobs:
|
||||
with:
|
||||
go-version-file: "go.mod"
|
||||
|
||||
- name: Install Gosec
|
||||
run: go install github.com/securecodewarrior/gosec/v2/cmd/gosec@latest
|
||||
|
||||
- name: Run Gosec Security Scanner
|
||||
uses: securecodewarrior/github-action-gosec@master
|
||||
with:
|
||||
args: ./...
|
||||
run: gosec ./...
|
||||
|
||||
- name: Run Nancy vulnerability scanner
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user