From 97762039fea73f29b805ca76dfdfc8ca2344bcb8 Mon Sep 17 00:00:00 2001 From: Alexander Kachkaev Date: Wed, 31 May 2023 01:46:05 +0100 Subject: [PATCH] Update build --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 8702aa1b..ca024d77 100644 --- a/dist/index.js +++ b/dist/index.js @@ -197,7 +197,7 @@ function checkAny(changedFiles, globs, dot) { } // equivalent to "Array.every()" but expanded for debugging and clarity function checkAll(changedFiles, globs, dot) { - const matchers = globs.map(g => new minimatch_1.Minimatch(g), { dot }); + const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot })); core.debug(` checking "all" patterns`); for (const changedFile of changedFiles) { if (!isMatch(changedFile, matchers)) {