Update github.com/mikeee/chocohelpers digest to 1edf0f9 #401
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
# Static script analysis | |
name: PSScriptAnalyzer | |
on: | |
pull_request: | |
jobs: | |
lint: | |
name: PSScriptAnalyzer | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: PSScriptAnalyzer checks | |
uses: devblackops/github-action-psscriptanalyzer@master | |
with: | |
sendComment: true | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
failOnErrors: true | |
failOnWarnings: false | |
failOnInfos: false |