From 900b39c4113db0af6d7af691c6f5e5f8918946f3 Mon Sep 17 00:00:00 2001 From: Gabe Cook Date: Sat, 27 Jul 2024 23:48:49 -0500 Subject: [PATCH] test: Automate updates of test kubedb version --- .github/workflows/test.yaml | 4 +++- renovate.json | 9 +++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 41bb013..380b9f9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,7 +9,9 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - version: [v1.4.9, v1.4.12, latest] + version: + - v1.13.3 + - latest steps: - uses: actions/checkout@v4 - uses: ./ diff --git a/renovate.json b/renovate.json index d3280b0..52f8845 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,14 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "local>clevyr/renovate-config-public" + ], + "customManagers": [ + { + "customType": "regex", + "fileMatch": [".github/workflows/test.yaml"], + "matchStrings": ["version:\\n +- (?.*)\n"], + "datasourceTemplate": "github-releases", + "depNameTemplate": "clevyr/kubedb" + } ] }