We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64c7479 commit 070ed73Copy full SHA for 070ed73
1 file changed
.github/actions/find/src/pluginManager.ts
@@ -58,7 +58,9 @@ export async function loadBuiltInPlugins() {
58
59
// - this is the path where actions appear when they're used in a workflow/repo
60
console.log('__dirname: ' + __dirname)
61
- const pluginsPath = '~/home/runner/work/_actions/github/accessibility-scanner/scanner-plugins/'
+ const pluginsPath = '../../../scanner-plugins/'
62
+
63
+ console.log('path.join(__dirname, "../../../scanner-plugins/"): ' + path.join(__dirname, pluginsPath))
64
await loadPluginsFromPath({
65
readPath: pluginsPath,
66
importPath: pluginsPath,
0 commit comments