We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8882eab commit 82114f6Copy full SHA for 82114f6
1 file changed
.github/actions/find/src/pluginManager.ts
@@ -56,9 +56,10 @@ export function clearCache() {
56
export async function loadBuiltInPlugins() {
57
core.info('Loading built-in plugins')
58
59
- const pluginsPath = '../../../scanner-plugins/'
+ // - this is the path where actions appear when they're used in a workflow/repo
60
+ const pluginsPath = '/home/runner/work/_actions/github/accessibility-scanner/scanner-plugins/'
61
await loadPluginsFromPath({
- readPath: path.join(__dirname, pluginsPath),
62
+ readPath: pluginsPath,
63
importPath: pluginsPath,
64
})
65
}
0 commit comments