From 7a194811cae23c68c8b94baa0c5ebad8423d5ba4 Mon Sep 17 00:00:00 2001
From: Michael Kriese <michael.kriese@visualon.de>
Date: Thu, 7 Apr 2022 08:00:58 +0200
Subject: [PATCH] fix(github-actions): tighten fileMatch (#14983)

* fix(github-actions): tighten fileMatch

* Update lib/modules/manager/github-actions/index.ts
---
 lib/modules/manager/github-actions/index.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/modules/manager/github-actions/index.ts b/lib/modules/manager/github-actions/index.ts
index eee8b346fb..11ed4bfeeb 100644
--- a/lib/modules/manager/github-actions/index.ts
+++ b/lib/modules/manager/github-actions/index.ts
@@ -5,7 +5,7 @@ export { extractPackageFile } from './extract';
 
 export const defaultConfig = {
   fileMatch: [
-    '(^workflow-templates|\\.github\\/workflows)\\/[^/]+\\.ya?ml$',
+    '^(workflow-templates|\\.github\\/workflows)\\/[^/]+\\.ya?ml$',
     '(^|\\/)action\\.ya?ml$',
   ],
 };
-- 
GitLab