From 0163350cb9cf8ebbcee21ebdad18e37919b17a97 Mon Sep 17 00:00:00 2001 From: Chris Nielsen Date: Thu, 7 Mar 2024 10:05:01 -0800 Subject: [PATCH] Updating debug drop behavior to avoid bugs --- node_modules/.package-lock.json | 8 +++++--- .../security-devops-actions-toolkit/msdo-client.js | 2 +- .../security-devops-actions-toolkit/package.json | 2 +- package-lock.json | 14 +++++++++----- package.json | 4 ++-- 5 files changed, 18 insertions(+), 12 deletions(-) diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index cca91db..d45f3ba 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,7 +1,7 @@ { "name": "microsoft-security-devops-action", - "version": "1.9.1", - "lockfileVersion": 2, + "version": "1.10.0", + "lockfileVersion": 3, "requires": true, "packages": { "node_modules/@actions/core": { @@ -31,7 +31,9 @@ "license": "MIT" }, "node_modules/@microsoft/security-devops-actions-toolkit": { - "version": "1.9.1", + "version": "1.10.0", + "resolved": "https://npm.pkg.github.com/download/@microsoft/security-devops-actions-toolkit/1.10.0/f22bf01b5f678e9b9ed9965d45d9889fb39b1dd9", + "integrity": "sha512-jOJ3FlqgHdcBzEcoxb039h8+W+mGp0xwV/HMA8gx1TlCzR4kGCOfYyJUlAtGFoiU9slDMDE3EbziDszAF1+L5Q==", "license": "MIT", "dependencies": { "@actions/core": "1.10.0", diff --git a/node_modules/@microsoft/security-devops-actions-toolkit/msdo-client.js b/node_modules/@microsoft/security-devops-actions-toolkit/msdo-client.js index ecabe73..821e2c1 100644 --- a/node_modules/@microsoft/security-devops-actions-toolkit/msdo-client.js +++ b/node_modules/@microsoft/security-devops-actions-toolkit/msdo-client.js @@ -83,7 +83,7 @@ function run(inputArgs, telemetryEnvironment = 'github') { return __awaiter(this, void 0, void 0, function* () { let cliFilePath = null; let args = []; - let debugDrop = process.env.GDN_DEBUG_DROP; + let debugDrop = common.parseBool(process.env.GDN_DEBUG_DROP); const gdnTaskLibFolder = path.resolve(__dirname); core.debug(`gdnTaskLibFolder = ${gdnTaskLibFolder}`); const nodeModulesFolder = path.dirname(path.dirname(gdnTaskLibFolder)); diff --git a/node_modules/@microsoft/security-devops-actions-toolkit/package.json b/node_modules/@microsoft/security-devops-actions-toolkit/package.json index b88d6e3..d60e82e 100644 --- a/node_modules/@microsoft/security-devops-actions-toolkit/package.json +++ b/node_modules/@microsoft/security-devops-actions-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/security-devops-actions-toolkit", - "version": "1.9.1", + "version": "1.10.0", "description": "Microsoft Security DevOps for GitHub Actions toolkit.", "author": "Microsoft Corporation", "license": "MIT", diff --git a/package-lock.json b/package-lock.json index 931a00f..23350fd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,17 +1,17 @@ { "name": "microsoft-security-devops-action", - "version": "1.9.1", + "version": "1.10.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "microsoft-security-devops-action", - "version": "1.9.1", + "version": "1.10.0", "license": "MIT", "dependencies": { "@actions/core": "1.10.0", "@actions/exec": "1.1.1", - "@microsoft/security-devops-actions-toolkit": "1.9.1" + "@microsoft/security-devops-actions-toolkit": "1.10.0" }, "devDependencies": { "@types/mocha": "^2.2.44", @@ -55,7 +55,9 @@ "license": "MIT" }, "node_modules/@microsoft/security-devops-actions-toolkit": { - "version": "1.9.1", + "version": "1.10.0", + "resolved": "https://npm.pkg.github.com/download/@microsoft/security-devops-actions-toolkit/1.10.0/f22bf01b5f678e9b9ed9965d45d9889fb39b1dd9", + "integrity": "sha512-jOJ3FlqgHdcBzEcoxb039h8+W+mGp0xwV/HMA8gx1TlCzR4kGCOfYyJUlAtGFoiU9slDMDE3EbziDszAF1+L5Q==", "license": "MIT", "dependencies": { "@actions/core": "1.10.0", @@ -5490,7 +5492,9 @@ "version": "1.0.2" }, "@microsoft/security-devops-actions-toolkit": { - "version": "1.9.1", + "version": "1.10.0", + "resolved": "https://npm.pkg.github.com/download/@microsoft/security-devops-actions-toolkit/1.10.0/f22bf01b5f678e9b9ed9965d45d9889fb39b1dd9", + "integrity": "sha512-jOJ3FlqgHdcBzEcoxb039h8+W+mGp0xwV/HMA8gx1TlCzR4kGCOfYyJUlAtGFoiU9slDMDE3EbziDszAF1+L5Q==", "requires": { "@actions/core": "1.10.0", "@actions/exec": "1.1.1", diff --git a/package.json b/package.json index 478fed9..34b87cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "microsoft-security-devops-action", - "version": "1.9.1", + "version": "1.10.0", "description": "Node dependencies for the microsoft/security-devops-action.", "scripts": { "build": "npx gulp", @@ -13,7 +13,7 @@ "dependencies": { "@actions/core": "1.10.0", "@actions/exec": "1.1.1", - "@microsoft/security-devops-actions-toolkit": "1.9.1" + "@microsoft/security-devops-actions-toolkit": "1.10.0" }, "devDependencies": { "@types/mocha": "^2.2.44",