File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 51
51
- uses : QuiiBz/sherif@v1
52
52
# Optionally, you can specify a version and arguments to run Sherif with:
53
53
# with:
54
- # version: '1 .0.1'
54
+ # version: 'v1 .0.1'
55
55
# args: '--ignore-rule root-package-manager-field'
56
56
57
57
# Using `npx` to run Sherif
Original file line number Diff line number Diff line change @@ -32649,6 +32649,11 @@ function run() {
32649
32649
if (platform !== 'win32') {
32650
32650
yield fsp.chmod(binaryPath, '777');
32651
32651
}
32652
+ // Add to PATH
32653
+ core.addPath(extractedPath);
32654
+ // Set output
32655
+ core.setOutput('sherif-path', binaryPath);
32656
+ core.info('Sherif has been installed successfully');
32652
32657
// Prepare arguments
32653
32658
const args = additionalArgs.split(' ').filter(arg => arg !== '');
32654
32659
// Configure output options to preserve colors
@@ -32658,7 +32663,7 @@ function run() {
32658
32663
})
32659
32664
};
32660
32665
// Execute Sherif
32661
- const exitCode = yield exec.exec(downloadPath , args, options);
32666
+ const exitCode = yield exec.exec(binaryPath , args, options);
32662
32667
// Handle exit code
32663
32668
if (exitCode !== 0) {
32664
32669
throw new Error(`Sherif execution failed with exit code ${exitCode}`);
You can’t perform that action at this time.
0 commit comments