chore(deps): update step-security/harden-runner action to v2.9.0 #248
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 | |
jobs: | |
build: | |
name: SonarCloud Scan | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
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@0d381219ddf674d61a7572ddd19d7941e271515c # v2.9.0 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.github.com:443 | |
ea6ne4j2sb.execute-api.eu-central-1.amazonaws.com | |
github.com:443 | |
pipelinesghubeus23.actions.githubusercontent.com:443 | |
registry.npmjs.org:443 | |
sc-cleancode-sensorcache-eu-central-1-prod.s3.amazonaws.com:443 | |
scanner.sonarcloud.io:443 | |
sonarcloud.io:443 | |
- name: Check out the source code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js environment | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_CONFIG_FUND: '0' | |
NPM_CONFIG_AUDIT: '0' | |
SUPPRESS_SUPPORT: '1' | |
NO_UPDATE_NOTIFIER: 'true' | |
- name: Run postinstall scripts | |
run: npm rebuild && npm run prepare --if-present | |
- name: Run tests | |
shell: bash | |
run: npm run test:coverage | |
env: | |
NO_UPDATE_NOTIFIER: 'true' | |
continue-on-error: true | |
- name: Grab info | |
id: info | |
run: | | |
echo "packageName=$(jq -r .name package.json)" >> "${GITHUB_OUTPUT}" | |
echo "packageVersion=$(jq -r .version package.json)" >> "${GITHUB_OUTPUT}" | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@e44258b109568baa0df60ed515909fc6c72cba92 # v2.3.0 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
with: | |
args: > | |
-Dsonar.projectName=${{ steps.info.outputs.packageName }} | |
-Dsonar.projectVersion=${{ steps.info.outputs.packageVersion }} | |
-Dsonar.links.homepage=${{ github.event.repository.homepage }} | |
-Dsonar.links.issue=${{ github.event.repository.html_url }}/issues | |
-Dsonar.links.scm=${{ github.repositoryUrl }} | |
-Dsonar.javascript.lcov.reportPaths=coverage/lcov.info |