build(deps): bump github.com/go-resty/resty/v2 from 2.13.1 to 2.15.1 #999
Workflow file for this run
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
name: Gosec Scan | |
on: | |
pull_request: null | |
jobs: | |
gosec_scan: | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
- name: Run Gosec Security Scanner on root directory | |
uses: securego/gosec@master | |
with: | |
# We need to temporarily exclude this as gosec doesn't | |
# support using module files from subdirectories. | |
args: -exclude-dir=k8s ./... |