From 08263d6d403fff19344fb00b49132d98b2b2d2b7 Mon Sep 17 00:00:00 2001 From: fleaz Date: Thu, 29 May 2025 19:11:00 +0200 Subject: [PATCH] Added renovate.config --- .forgejo/workflows/deploy.yaml | 2 +- renovate.json5 | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 renovate.json5 diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index c0c84aa..12ca2fd 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -4,7 +4,7 @@ on: push: env: - TRIVY_VERSION: "0.26.1" + TRIVY_VERSION: "0.26.0" jobs: container: diff --git a/renovate.json5 b/renovate.json5 new file mode 100644 index 0000000..fe337d2 --- /dev/null +++ b/renovate.json5 @@ -0,0 +1,15 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "automerge": true, + "automergeStrategy": "squash", + "customManagers": [ + { + "customType": "regex", + "description": "Update trivy-operator helm chart", + "fileMatch": ["^.forgejo/workflows/deploy.yaml$"], + "matchStrings": ["TRIVY_VERSION: \"(?.*?)\"\\n"], + "depNameTemplate": "aquasecurity/trivy-operator", + "datasourceTemplate": "github-releases" + } + ] +}