Bump certifi from 2023.5.7 to 2023.7.22 #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: pull_request_target | |
jobs: | |
sonarQubeTrigger: | |
name: SonarQube Trigger | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- name: SonarQube Scan | |
uses: philips-software/sonar-scanner-action@main | |
with: | |
url: ${{ secrets.SONARQUBE_HOST }} | |
token: ${{ secrets.SONARQUBE_TOKEN }} | |
projectKey: github-action-scripts | |
projectName: GitHub Action Scripts | |
enablePullRequestDecoration: true | |
- name: Cleanup scan | |
run: sudo rm -rf "$GITHUB_WORKSPACE/.scannerwork" |