chore(security): remove Snyk security workflow and update renovate configuration
All checks were successful
Enforce Conventional Commit PR Title / Validate PR Title (pull_request_target) Successful in 2s
CI / ci (pull_request) Successful in 31s

This commit is contained in:
2026-01-21 20:51:42 +00:00
parent 2d09709b9f
commit 1748d9d244
3 changed files with 19 additions and 17 deletions

View File

@@ -0,0 +1,36 @@
name: Security
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: "@daily"
jobs:
# sonarqube:
# name: 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:
name: Snyk
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6.0.1
- name: Snyk
uses: snyk/actions/python@master
continue-on-error: true
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}