From 0719f5c11099717f396e014762cf16608c009989 Mon Sep 17 00:00:00 2001 From: Jon Date: Tue, 13 Aug 2024 09:48:13 -0500 Subject: [PATCH] [renovate] Test github action package match (#190427) Another attempt at fixing github action pinning. This scopes us to the actions/checkout package only for now, and we can expand it later. Previously: https://github.com/elastic/kibana/pull/190377, which was successful for the auto-approve-backport acttion. --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 525a688221a63..6f9e87e5e07a0 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended", "helpers:pinGitHubActionDigests"], + "extends": ["config:recommended", "helpers:pinGitHubActionDigests", "helpers:pinGitHubActionDigestsToSemver"], "ignorePaths": ["**/__fixtures__/**", "**/fixtures/**"], "enabledManagers": ["npm", "github-actions", "custom.regex"], "baseBranches": ["main", "7.17"], @@ -29,6 +29,7 @@ { "groupName": "GitHub actions", "matchManagers": ["github-actions"], + "matchPackageNames": ["actions/checkout"], "reviewers": ["team:kibana-operations"], "matchBaseBranches": ["main"], "labels": ["Team:Operations", "backport:all-open", "release_note:skip"],