Added support for updated Reserved IP behavior to existing resources (instance, network_ips) #1164
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 ./... |