Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 Update Examples to Use v2 #28

Merged
merged 1 commit into from
Jun 27, 2024
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 @@ -45,7 +45,7 @@ confusing it for the typical _project analysis token_.
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

- name: Upload SonarQube Results to Pixeebot
uses: pixee/upload-tool-results-action@v1
uses: pixee/upload-tool-results-action@v2
if: always() && steps.sonarqube-analysis.outcome == 'success'
with:
tool: sonar
Expand Down
2 changes: 1 addition & 1 deletion examples/contrast-pixeebot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Upload Contrast Findings to Pixeebot
runs-on: ubuntu-latest
steps:
- uses: pixee/upload-tool-results-action@v1
- uses: pixee/upload-tool-results-action@v2
with:
tool: contrast
contrast-api-url: ${{ secrets.CONTRAST_API_URL }}
Expand Down
2 changes: 1 addition & 1 deletion examples/defectdojo-pixeebot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Upload DefectDojo Findings to Pixeebot
runs-on: ubuntu-latest
steps:
- uses: pixee/upload-tool-results-action@v1
- uses: pixee/upload-tool-results-action@v2
with:
tool: defectdojo
defectdojo-token: ${{ secrets.DEFECTDOJO_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion examples/sonarcloud-pixeebot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.check_run.name == 'SonarCloud Code Analysis' }}
steps:
- uses: pixee/upload-tool-results-action@v1
- uses: pixee/upload-tool-results-action@v2
with:
tool: sonar
sonar-token: ${{ secrets.SONAR_TOKEN }}
2 changes: 1 addition & 1 deletion examples/sonarqube-pixeebot-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
scanMetadataReportFile: target/sonar/report-task.txt

- name: Upload SonarQube Results to Pixeebot
uses: pixee/upload-tool-results-action@v1
uses: pixee/upload-tool-results-action@v2
if: always() && steps.sonarqube-analysis.outcome == 'success' # run this when the analysis is successful, regardless of the quality gate status
with:
tool: sonar
Expand Down
2 changes: 1 addition & 1 deletion examples/sonarqube-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

- name: Upload SonarQube Results to Pixeebot
uses: pixee/upload-tool-results-action@v1
uses: pixee/upload-tool-results-action@v2
if: always() && steps.sonarqube-analysis.outcome == 'success'
with:
tool: sonar
Expand Down