Temporarily disable job `psscript-analyzer` in static checks (#4837)

The job started failing consistently today with:
```
##[error]devblackops/github-action-psscriptanalyzer/v2/action.yml (Line:
30, Col: 9): Unexpected value ''
##[error]devblackops/github-action-psscriptanalyzer/v2/action.yml (Line:
30, Col: 9): Unexpected value ''
##[error]System.ArgumentException: Unexpected type 'NullToken'
encountered while reading 'outputs'. The type 'MappingToken' was
expected.
```

It seems it's something in Github that changed today that is clashing
with the `devblackops/github-action-psscriptanalyzer` action.

I've raised devblackops/github-action-psscriptanalyzer#12
This commit is contained in:
Alejandro Pedraza 2020-08-05 00:01:30 -05:00 committed by GitHub
parent 381f237f69
commit f38bdf8ecc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 13 deletions

View File

@ -49,22 +49,22 @@ jobs:
# https://github.com/koalaman/shellcheck/wiki/Checks
run: |
bin/shellcheck-all
psscript-analyzer:
name: PSScriptAnalyzer
runs-on: ubuntu-18.04
steps:
- name: Checkout code
#psscript-analyzer:
#name: PSScriptAnalyzer
#runs-on: ubuntu-18.04
#steps:
#- name: Checkout code
# actions/checkout@v2
uses: actions/checkout@722adc6
- name: Chocolatey - lint
# uses: actions/checkout@722adc6
#- name: Chocolatey - lint
# devblackops/github-action-psscriptanalyzer@v2.0.0
uses: devblackops/github-action-psscriptanalyzer@889a059
env:
# uses: devblackops/github-action-psscriptanalyzer@889a059
# env:
# https://github.com/devblackops/github-action-psscriptanalyzer/pull/3/files
INPUT_FAILONWARNING: 1
with:
rootPath: bin/win/tools
failOnInfos: true
# INPUT_FAILONWARNING: 1
# with:
# rootPath: bin/win/tools
# failOnInfos: true
markdown_lint:
name: Markdown lint
runs-on: ubuntu-18.04