We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 070ed73 commit 78ea4c9Copy full SHA for 78ea4c9
1 file changed
.github/actions/find/src/pluginManager.ts
@@ -58,9 +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 = '../../../scanner-plugins/'
+ const pluginsPath = path.join(__dirname, '../../../scanner-plugins/')
62
63
- console.log('path.join(__dirname, "../../../scanner-plugins/"): ' + path.join(__dirname, pluginsPath))
+ console.log('path.join(__dirname, "../../../scanner-plugins/"): ' + pluginsPath)
64
await loadPluginsFromPath({
65
readPath: pluginsPath,
66
importPath: pluginsPath,
0 commit comments