diff --git a/badges/coverage.svg b/badges/coverage.svg index e7e5fce..d78f514 100644 --- a/badges/coverage.svg +++ b/badges/coverage.svg @@ -1 +1 @@ -Coverage: 14.59%Coverage14.59% \ No newline at end of file +Coverage: 14.55%Coverage14.55% \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index 7e03f1d..4a6ef94 100644 --- a/dist/index.js +++ b/dist/index.js @@ -121990,7 +121990,7 @@ module.exports = { /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { const core = __nccwpck_require__(42186) -const path = __nccwpck_require__(71017) +const path = __nccwpck_require__(49411) const { generateTestResults, getUniqueBy } = __nccwpck_require__(70062) @@ -122086,6 +122086,8 @@ async function checkForBuildTampering() { const cwd = log.process.cwd const filePath = log.file.path + console.log(filePath) + console.log(log) // Check if the file path is already absolute const fullFilePath = path.isAbsolute(filePath) ? filePath @@ -123479,7 +123481,7 @@ module.exports = { /***/ 49554: /***/ ((module) => { -const releaseVersion = 'v1.7.0-rc.4' +const releaseVersion = 'v1.7.0-rc.5' module.exports = { releaseVersion @@ -123648,6 +123650,14 @@ module.exports = require("node:events"); /***/ }), +/***/ 49411: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:path"); + +/***/ }), + /***/ 84492: /***/ ((module) => { diff --git a/src/audit_summary.js b/src/audit_summary.js index b395152..c4028d4 100644 --- a/src/audit_summary.js +++ b/src/audit_summary.js @@ -1,5 +1,5 @@ const core = require('@actions/core') -const path = require('path') +const path = require('node:path') const { generateTestResults, getUniqueBy } = require('./summary_utils') @@ -95,6 +95,8 @@ async function checkForBuildTampering() { const cwd = log.process.cwd const filePath = log.file.path + console.log(filePath) + console.log(log) // Check if the file path is already absolute const fullFilePath = path.isAbsolute(filePath) ? filePath diff --git a/src/version.js b/src/version.js index e3e27c3..27dd4c9 100644 --- a/src/version.js +++ b/src/version.js @@ -1,4 +1,4 @@ -const releaseVersion = 'v1.7.0-rc.4' +const releaseVersion = 'v1.7.0-rc.5' module.exports = { releaseVersion