From 00bf85c7dd6ab5b7dfa9d9d4f8f0b140023b872e Mon Sep 17 00:00:00 2001 From: Nic Cope Date: Thu, 30 May 2024 13:55:56 -0700 Subject: [PATCH] Use GitHub releases, not tags, for Earthfile deps Notably CodeQL seems to have a tag cut that doesn't exist as a release. Signed-off-by: Nic Cope --- .github/renovate.json5 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 1f5d13bef..fd6da75ff 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -40,7 +40,7 @@ "matchStrings": [ "EARTHLY_VERSION: '(?.*?)'\\n" ], - "datasourceTemplate": "github-tags", + "datasourceTemplate": "github-releases", "depNameTemplate": "earthly/earthly", "extractVersionTemplate": "^v(?.*)$" }, @@ -65,7 +65,7 @@ "matchStrings": [ "ARG GOLANGCI_LINT_VERSION=(?.*?)\\n" ], - "datasourceTemplate": "github-tags", + "datasourceTemplate": "github-releases", "depNameTemplate": "golangci/golangci-lint" }, { @@ -77,7 +77,7 @@ "matchStrings": [ "ARG CODEQL_VERSION=(?.*?)\\n" ], - "datasourceTemplate": "github-tags", + "datasourceTemplate": "github-releases", "depNameTemplate": "github/codeql-action", "extractVersionTemplate": "^codeql-bundle-(?.*)$" },