From 8117de6119b7ddb5e21ad255e6b1b965af68126b Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Tue, 24 Mar 2020 14:35:48 -0400 Subject: [PATCH 1/4] Bump @actions/core --- dist/index.js | 7 +++++++ package-lock.json | 6 +++--- package.json | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 5d7c55b..353e9a0 100644 --- a/dist/index.js +++ b/dist/index.js @@ -7139,6 +7139,13 @@ exports.setFailed = setFailed; //----------------------------------------------------------------------- // Logging Commands //----------------------------------------------------------------------- +/** + * Gets whether Actions Step Debug is on or not + */ +function isDebug() { + return process.env['RUNNER_DEBUG'] === '1'; +} +exports.isDebug = isDebug; /** * Writes debug message to user log * @param message debug message diff --git a/package-lock.json b/package-lock.json index afdc0e5..d0b81d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,9 +5,9 @@ "requires": true, "dependencies": { "@actions/core": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.2.tgz", - "integrity": "sha512-IbCx7oefq+Gi6FWbSs2Fnw8VkEI6Y4gvjrYprY3RV//ksq/KPMlClOerJ4jRosyal6zkUIc8R9fS/cpRMlGClg==" + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.3.tgz", + "integrity": "sha512-Wp4xnyokakM45Uuj4WLUxdsa8fJjKVl1fDTsPbTEcTcuu0Nb26IPQbOtjmnfaCPGcaoPOOqId8H9NapZ8gii4w==" }, "@actions/github": { "version": "2.1.1", diff --git a/package.json b/package.json index cd9ca66..56310a2 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "version": "0.8.0", "author": "GitHub", "dependencies": { - "@actions/core": "^1.2.2", + "@actions/core": "^1.2.3", "@actions/github": "^2.1.1" }, "devDependencies": { From 7ca8635cd04e51ec1664e5c036af8a5f2bcf92b0 Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Tue, 24 Mar 2020 14:36:26 -0400 Subject: [PATCH 2/4] Bump @types/jest --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index d0b81d3..c322bee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -918,9 +918,9 @@ } }, "@types/jest": { - "version": "25.1.3", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-25.1.3.tgz", - "integrity": "sha512-jqargqzyJWgWAJCXX96LBGR/Ei7wQcZBvRv0PLEu9ZByMfcs23keUJrKv9FMR6YZf9YCbfqDqgmY+JUBsnqhrg==", + "version": "25.1.4", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-25.1.4.tgz", + "integrity": "sha512-QDDY2uNAhCV7TMCITrxz+MRk1EizcsevzfeS6LykIlq2V1E5oO4wXG8V2ZEd9w7Snxeeagk46YbMgZ8ESHx3sw==", "dev": true, "requires": { "jest-diff": "^25.1.0", diff --git a/package.json b/package.json index 56310a2..d3d36f1 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "@actions/github": "^2.1.1" }, "devDependencies": { - "@types/jest": "^25.1.3", + "@types/jest": "^25.1.4", "@zeit/ncc": "^0.21.1", "husky": "^4.2.3", "jest": "^25.1.0", From a59996ab352894bc7bc1a1e9074fa03e7861d618 Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Tue, 24 Mar 2020 14:37:22 -0400 Subject: [PATCH 3/4] Update TypeScript --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index c322bee..b5eaaca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4938,9 +4938,9 @@ } }, "typescript": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.2.tgz", - "integrity": "sha512-EgOVgL/4xfVrCMbhYKUQTdF37SQn4Iw73H5BgCrF1Abdun7Kwy/QZsE/ssAy0y4LxBbvua3PIbFsbRczWWnDdQ==", + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", + "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", "dev": true }, "union-value": { diff --git a/package.json b/package.json index d3d36f1..1ab8d7f 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "husky": "^4.2.3", "jest": "^25.1.0", "ts-jest": "^25.2.1", - "typescript": "^3.8.2" + "typescript": "^3.8.3" }, "husky": { "hooks": { From 2ccd1edaf4778b6e97bacedb46f66638bdd9f58d Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Tue, 24 Mar 2020 14:38:07 -0400 Subject: [PATCH 4/4] Update ncc --- dist/index.js | 4 ++-- package-lock.json | 6 +++--- package.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index 353e9a0..c3dddea 100644 --- a/dist/index.js +++ b/dist/index.js @@ -298,9 +298,9 @@ module.exports = require("tls"); /***/ }), /***/ 18: -/***/ (function() { +/***/ (function(module) { -eval("require")("encoding"); +module.exports = eval("require")("encoding"); /***/ }), diff --git a/package-lock.json b/package-lock.json index b5eaaca..4af28e5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -960,9 +960,9 @@ "dev": true }, "@zeit/ncc": { - "version": "0.21.1", - "resolved": "https://registry.npmjs.org/@zeit/ncc/-/ncc-0.21.1.tgz", - "integrity": "sha512-M9WzgquSOt2nsjRkYM9LRylBLmmlwNCwYbm3Up3PDEshfvdmIfqpFNSK8EJvR18NwZjGHE5z2avlDtYQx2JQnw==", + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/@zeit/ncc/-/ncc-0.22.0.tgz", + "integrity": "sha512-zaS6chwztGSLSEzsTJw9sLTYxQt57bPFBtsYlVtbqGvmDUsfW7xgXPYofzFa1kB9ur2dRop6IxCwPnWLBVCrbQ==", "dev": true }, "abab": { diff --git a/package.json b/package.json index 1ab8d7f..d531190 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ }, "devDependencies": { "@types/jest": "^25.1.4", - "@zeit/ncc": "^0.21.1", + "@zeit/ncc": "^0.22.0", "husky": "^4.2.3", "jest": "^25.1.0", "ts-jest": "^25.2.1",