Merge pull request #40 from cnagadya/main

Make action GHES compatible
This commit is contained in:
Lane Seppala
2023-05-31 09:26:27 -06:00
committed by GitHub
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -510,7 +510,7 @@ function getDetector() {
function generateDependencyGraph(directory, config) {
return __awaiter(this, void 0, void 0, function* () {
try {
const mvn = new maven_runner_1.MavenRunner(directory, config === null || config === void 0 ? void 0 : config.settingsFile, config === null || config === void 0 ? void 0 : config.ignoreMavenWrapper);
const mvn = new maven_runner_1.MavenRunner(directory, config === null || config === void 0 ? void 0 : config.settingsFile, config === null || config === void 0 ? void 0 : config.ignoreMavenWrapper, config === null || config === void 0 ? void 0 : config.mavenArgs);
core.startGroup('depgraph-maven-plugin:reactor');
const mavenReactorArguments = [
`com.github.ferstl:depgraph-maven-plugin:${DEPGRAPH_MAVEN_PLUGIN_VERSION}:reactor`,
@@ -15518,7 +15518,7 @@ module.exports = require("zlib");
/***/ ((module) => {
"use strict";
module.exports = {"i8":"3.0.0"};
module.exports = {"i8":"3.0.2"};
/***/ })
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -3
View File
@@ -1,16 +1,16 @@
{
"name": "maven-dependency-tree-submission",
"version": "3.0.1",
"version": "3.0.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "maven-dependency-tree-submission",
"version": "3.0.1",
"version": "3.0.2",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@github/dependency-submission-toolkit": "^1.2.8",
"@github/dependency-submission-toolkit": "^1.2.10",
"commander": "^9.4.0",
"packageurl-js": "^0.0.7"
},
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "maven-dependency-tree-submission",
"version": "3.0.1",
"version": "3.0.2",
"description": "",
"main": "index.js",
"scripts": {
@@ -22,7 +22,7 @@
"homepage": "https://github.com/advanced-security/maven-dependency-tree-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@github/dependency-submission-toolkit": "^1.2.8",
"@github/dependency-submission-toolkit": "^1.2.10",
"commander": "^9.4.0",
"packageurl-js": "^0.0.7"
},