chore(deps): update actions/dependency-review-action action to v4.4.0 #1417
Workflow file for this run
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: SonarCloud Analysis | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
permissions: | |
contents: read | |
env: | |
SONARSCANNER: 'true' | |
jobs: | |
build: | |
name: SonarCloud Scan | |
runs-on: ubuntu-latest | |
if: | | |
github.event_name != 'pull_request' || | |
github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.github.com:443 | |
github.com:443 | |
npm.pkg.github.com:443 | |
objects.githubusercontent.com:443 | |
registry.npmjs.org:443 | |
api.sonarcloud.io:443 | |
analysis-sensorcache-eu-central-1-prod.s3.amazonaws.com:443 | |
sc-cleancode-sensorcache-eu-central-1-prod.s3.amazonaws.com:443 | |
scanner.sonarcloud.io:443 | |
sonarcloud.io:443 | |
- name: Run SonarCloud analysis | |
uses: myrotvorets/composite-actions/node-sonarscan@09d255375687c98c9cf23c50104bebb44d281923 | |
with: | |
sonar-token: ${{ secrets.SONAR_TOKEN }} | |
test-script: 'test:sonarqube' |