Skip to content

Bump minimatch from 3.1.2 to 3.1.5 #179

Bump minimatch from 3.1.2 to 3.1.5

Bump minimatch from 3.1.2 to 3.1.5 #179

Workflow file for this run

name: SonarCloud
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
pull-requests: read
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
# Secrets are not available to workflows triggered from forked pull requests.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- name: Checkout 🛒
uses: actions/checkout@v6
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: SonarCloud Scan 🔍
uses: SonarSource/sonarqube-scan-action@v6
env:
GITHUB_TOKEN: ${{ github.token }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ env.SONAR_TOKEN }}