·
22 commits
to master
since this release
OVERLOOKED BREAKING CHANGE!
In order to prevent command-line injection, the way to parse the args input has been changed, but this is possibly a breaking change regarding support of quotes.
For example, if you were previously passing:
- uses: SonarSource/sonarqube-scan-action@<action version>
with:
args: >
-Dsonar.projectName="My Project"you should now pass:
- uses: SonarSource/sonarqube-scan-action@<action version>
with:
args: >
"-Dsonar.projectName=My Project"Edit: We have now released v6 that more accurately reflect this breaking change.
What's Changed
- SQSCANGHA-101 Add more input injection tests by @aleksandra-bozhinoska-sonarsource in #200
New Contributors
- @daantimmer made their first contribution in #199
Full Changelog: v5...v5.3.1