azapi_resource_action
- support sensitive_response_export_values
and sensitive_output
fields
#404
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: Go Security Check | |
on: | |
pull_request: | |
types: ['opened', 'synchronize'] | |
paths: | |
- '**.go' | |
- 'vendor/**' | |
- '.github/workflows/**' | |
jobs: | |
gosec: | |
name: gosec | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v2 | |
- name: Run Gosec Security Scanner | |
uses: securego/gosec@master | |
with: | |
args: './...' |