From 78b6c4102543d19b462f32ef7c865cf6874b69de Mon Sep 17 00:00:00 2001 From: Verum Date: Sat, 7 Mar 2026 01:30:22 +0700 Subject: [PATCH] =?UTF-8?q?=D0=A2=D0=B5=D1=81=D1=82:=20=D0=B1=D0=B5=D0=B7?= =?UTF-8?q?=D0=BE=D0=BF=D0=B0=D1=81=D0=BD=D0=BE=D1=81=D1=82=D0=B8=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=B4=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/security.yml | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .gitea/workflows/security.yml diff --git a/.gitea/workflows/security.yml b/.gitea/workflows/security.yml new file mode 100644 index 0000000..ab67cc0 --- /dev/null +++ b/.gitea/workflows/security.yml @@ -0,0 +1,36 @@ +# ============================================================ +# Security checks +# Проверка уязвимостей зависимостей +# ============================================================ + +name: Security + +on: + schedule: + - cron: "0 3 * * 1" + + workflow_dispatch: + +jobs: + + security-scan: + name: Dependency security scan + runs-on: ubuntu-latest + + steps: + + - name: Checkout repository + uses: actions/checkout@v4 + + # Установка Python + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + + # Установка инструмента проверки + - name: Install pip-audit + run: pip install pip-audit + + # Проверка зависимостей + - name: Run security audit + run: pip-audit