Sonarcloud ghauri #27
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 Scan - RouterSploit | |
on: | |
push: | |
branches: | |
- main | |
- sonarcloud-kiterunner | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
sonarcloud-routersploit: | |
name: Scan RouterSploit | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the RouterSploit repository | |
- name: Checkout RouterSploit Repository | |
uses: actions/checkout@v4 | |
with: | |
repository: threat9/routersploit | |
path: routersploit # Optional: Clone into a specific directory | |
ref: 'v3.4.6' | |
# Set up Python 3.13 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.13' | |
# Install Python dependencies | |
- name: Install Python dependencies | |
run: | | |
cd routersploit | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
# SonarCloud Scan for RouterSploit | |
- name: SonarCloud Scan | |
uses: sonarsource/sonarqube-scan-action@v4 | |
continue-on-error: true | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
with: | |
args: > | |
-Dsonar.organization=matusso | |
-Dsonar.projectKey=docker-builds:routersploit | |
-Dsonar.verbose=true | |
-Dsonar.python.version=3.13 | |
-Dsonar.projectName=routersploit | |
-Dsonar.sources=routersploit |