Add CI/CD workflows and configuration files for GitLab and Gitea
All checks were successful
Snyk / security (push) Successful in 24s

This commit is contained in:
2026-01-04 12:37:35 +00:00
parent caad97e8b0
commit 6948e62e18
8 changed files with 257 additions and 8 deletions

24
.gitea/workflows/snyk.yml Normal file
View File

@@ -0,0 +1,24 @@
name: Snyk
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: "@daily"
jobs:
security:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v6.0.1
- name: Snyk
uses: snyk/actions/golang@master
continue-on-error: true
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
command: monitor