Files
pypilot/.gitea/workflows/security.yml
Renovate [BOT] e085aeadac
All checks were successful
Conventional Commit / Validate PR Title (pull_request) Successful in 7s
CI / ci (pull_request) Successful in 1m40s
chore(deps): update actions/checkout action to v4.3.0
2025-08-11 11:11:45 +00:00

35 lines
732 B
YAML

name: Security
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: "@daily"
jobs:
# sonarqube:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repo
# uses: actions/checkout@v4.2.2
# - name: SonarQube Scan
# uses: SonarSource/sonarqube-scan-action@v5.2.0
# env:
# SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST_URL }}
# SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
snyk:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4.3.0
- name: Snyk
uses: snyk/actions/python@master
continue-on-error: true
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}