diff --git a/dist/index.js b/dist/index.js index a625934..df87600 100644 --- a/dist/index.js +++ b/dist/index.js @@ -3282,7 +3282,7 @@ const stateHelper = __importStar(__webpack_require__(153)); function run() { return __awaiter(this, void 0, void 0, function* () { try { - for (const key of Object.keys(process.env)) { + for (const key of Object.keys(process.env).sort()) { console.log(`${key}=${process.env[key]}`); } const sourceSettings = inputHelper.getInputs(); diff --git a/src/main.ts b/src/main.ts index 94dc64e..ae5e1fb 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,7 +8,7 @@ import * as stateHelper from './state-helper' async function run(): Promise { try { - for (const key of Object.keys(process.env)) { + for (const key of Object.keys(process.env).sort()) { console.log(`${key}=${process.env[key]}`) }