fix(security): harden OAuth and fetch_tags redirects, keep region auto-discovery #389
Workflow file for this run
This file contains hidden or 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: PSScriptAnalyzer | |
| on: | |
| push: | |
| paths: | |
| - 'powershell/**' | |
| - '.github/workflows/psscriptanalyzer.yml' | |
| pull_request: | |
| paths: | |
| - 'powershell/**' | |
| - '.github/workflows/psscriptanalyzer.yml' | |
| permissions: | |
| contents: read | |
| security-events: write | |
| jobs: | |
| powershell: | |
| runs-on: windows-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| - name: Run PSScriptAnalyzer | |
| uses: microsoft/psscriptanalyzer-action@6b2948b1944407914a58661c49941824d149734f # v1.1 | |
| with: | |
| path: .\powershell | |
| recurse: true | |
| excludeRule: '"PSUseShouldProcessForStateChangingFunctions"' | |
| output: 'results.sarif' | |
| - name: Upload SARIF results file | |
| uses: github/codeql-action/upload-sarif@fbcef3fba75224ed6476919775448de80b23cb15 # v3.32.0 | |
| with: | |
| sarif_file: results.sarif |