Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> [!WARNING]
> This action is deprecated and will be removed in a future release.
> Please use the `sonarqube-scan-action` action instead.
> The `sonarqube-scan-action` is a drop-in replacement for this action.
> The `sonarqube-scan-action` is a drop-in replacement for this action, you can find it [here](https://github.com/marketplace/actions/official-sonarqube-scan).

This SonarSource project, available as a GitHub Action, scans your projects with SonarQube [Cloud](https://www.sonarsource.com/products/sonarcloud/).

Expand Down
5 changes: 3 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ inputs:
scannerVersion:
description: Version of the Sonar Scanner CLI to use
required: false
default: 6.2.1.4610
# to be kept in sync with the default version in the sonarqube-scan-action
default: 7.0.2.4839
scannerBinariesUrl:
description: URL to download the Sonar Scanner CLI binaries from
required: false
Expand All @@ -28,7 +29,7 @@ runs:
run: |
echo "::warning title=SonarScanner::This action is deprecated and will be removed in a future release. Please use the sonarqube-scan-action action instead. The sonarqube-scan-action is a drop-in replacement for this action."
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On peut enlever ce warning du coup ?

- name: SonarQube Cloud Scan
uses: SonarSource/sonarqube-scan-action@v4.1.0
uses: SonarSource/sonarqube-scan-action@v5.0.0
with:
args: ${{ inputs.args }}
projectBaseDir: ${{ inputs.projectBaseDir }}
Expand Down
Loading