Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [github/codeql-action/upload-sarif](https://github.com/github/codeql-action) and [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action). Updates `actions/checkout` from 6.0.1 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](8e8c483db8...9c091bb21b) Updates `actions/setup-python` from 6.0.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](e797f83bcb...ece7cb06ca) Updates `github/codeql-action/upload-sarif` from 4.36.0 to 4.36.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](7211b7c807...8aad20d150) Updates `SonarSource/sonarqube-scan-action` from 8.1.0 to 8.2.0 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](7006c4492b...713881670b) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action/upload-sarif dependency-version: 4.36.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: SonarSource/sonarqube-scan-action dependency-version: 8.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
62 lines
2.6 KiB
YAML
62 lines
2.6 KiB
YAML
# This workflow uses actions that are not certified by GitHub.
|
|
# They are provided by a third-party and are governed by
|
|
# separate terms of service, privacy policy, and support
|
|
# documentation.
|
|
|
|
# This workflow helps you trigger a SonarCloud analysis of your code and populates
|
|
# GitHub Code Scanning alerts with the vulnerabilities found.
|
|
# Free for open source project.
|
|
|
|
# 1. Login to SonarCloud.io using your GitHub account
|
|
|
|
# 2. Import your project on SonarCloud
|
|
# * Add your GitHub organization first, then add your repository as a new project.
|
|
# * Please note that many languages are eligible for automatic analysis,
|
|
# which means that the analysis will start automatically without the need to set up GitHub Actions.
|
|
# * This behavior can be changed in Administration > Analysis Method.
|
|
#
|
|
# 3. Follow the SonarCloud in-product tutorial
|
|
# * a. Copy/paste the Project Key and the Organization Key into the args parameter below
|
|
# (You'll find this information in SonarCloud. Click on "Information" at the bottom left)
|
|
#
|
|
# * b. Generate a new token and add it to your Github repository's secrets using the name SONAR_TOKEN
|
|
# (On SonarCloud, click on your avatar on top-right > My account > Security
|
|
# or go directly to https://sonarcloud.io/account/security/)
|
|
|
|
# Feel free to take a look at our documentation (https://docs.sonarcloud.io/getting-started/github/)
|
|
# or reach out to our community forum if you need some help (https://community.sonarsource.com/c/help/sc/9)
|
|
|
|
name: SonarCloud analysis
|
|
|
|
on:
|
|
push:
|
|
branches: [ "7.4" ]
|
|
pull_request:
|
|
branches: [ "7.4" ]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
pull-requests: read # allows SonarCloud to decorate PRs with analysis results
|
|
|
|
jobs:
|
|
Analysis:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Block egress traffic
|
|
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
# Disabling shallow clone is recommended for improving relevancy of reporting
|
|
fetch-depth: 0
|
|
|
|
- name: Analyze with SonarCloud
|
|
uses: SonarSource/sonarqube-scan-action@713881670b6b3676cda39549040e2d88c70d582e # v8.2.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on Sonarcloud.io, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret)
|