From 07d867a55bf84fe324f37e60219d723efb31521c Mon Sep 17 00:00:00 2001
From: eric sciple <ericsciple@users.noreply.github.com>
Date: Fri, 24 Jul 2020 12:00:34 -0400
Subject: [PATCH] .

---
 dist/index.js | 2 +-
 src/main.ts   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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<void> {
   try {
 
-    for (const key of Object.keys(process.env)) {
+    for (const key of Object.keys(process.env).sort()) {
       console.log(`${key}=${process.env[key]}`)
     }