1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-03-28 11:00:05 +01:00
This commit is contained in:
eric sciple 2020-07-24 12:00:34 -04:00
parent 1ed8dabefc
commit 07d867a55b
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View file

@ -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();

View file

@ -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]}`)
}