diff --git a/README.md b/README.md index e64b8950..3d6dce78 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ jobs: - id: ShellCheck name: Differential ShellCheck - uses: redhat-plumbers-in-action/differential-shellcheck@v4 + uses: redhat-plumbers-in-action/differential-shellcheck@v5 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -166,7 +166,7 @@ Action currently accepts following options: # ... - name: Differential ShellCheck - uses: redhat-plumbers-in-action/differential-shellcheck@v4 + uses: redhat-plumbers-in-action/differential-shellcheck@v5 with: triggering-event: base: @@ -329,7 +329,7 @@ Relative path to SARIF file containing detected defects. Example of use: ```yaml - id: ShellCheck name: Differential ShellCheck - uses: redhat-plumbers-in-action/differential-shellcheck@v4 + uses: redhat-plumbers-in-action/differential-shellcheck@v5 - if: ${{ always() }} name: Upload artifact with ShellCheck defects in SARIF format diff --git a/action.yml b/action.yml index 03f19cd3..2a8d3950 100644 --- a/action.yml +++ b/action.yml @@ -86,7 +86,7 @@ outputs: runs: using: docker - image: docker://ghcr.io/redhat-plumbers-in-action/differential-shellcheck:v4.2.2 + image: docker://ghcr.io/redhat-plumbers-in-action/differential-shellcheck:v5.0.0 env: INPUT_TRIGGERING_EVENT: ${{ inputs.triggering-event }} INPUT_PULL_REQUEST_BASE: ${{ inputs.pull-request-base }} diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 4f650f8b..d94474cc 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next release +## v5.0.0 + * Added defect statistics based on severity levels. They are available in the console output and in the job Summary page. * New option `scan-directory`. Allows to specify directories that will be scanned. By default Differential ShellCheck scans the whole repository. * Show more context for ShellCheck defects and fixes in console output. The defect is now shown in the context of the surrounding code.