mirror of
https://github.com/actions/checkout.git
synced 2025-04-01 22:10:06 +02:00
.
This commit is contained in:
parent
1ed8dabefc
commit
07d867a55b
2 changed files with 2 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -3282,7 +3282,7 @@ const stateHelper = __importStar(__webpack_require__(153));
|
||||||
function run() {
|
function run() {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
try {
|
try {
|
||||||
for (const key of Object.keys(process.env)) {
|
for (const key of Object.keys(process.env).sort()) {
|
||||||
console.log(`${key}=${process.env[key]}`);
|
console.log(`${key}=${process.env[key]}`);
|
||||||
}
|
}
|
||||||
const sourceSettings = inputHelper.getInputs();
|
const sourceSettings = inputHelper.getInputs();
|
||||||
|
|
|
@ -8,7 +8,7 @@ import * as stateHelper from './state-helper'
|
||||||
async function run(): Promise<void> {
|
async function run(): Promise<void> {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
for (const key of Object.keys(process.env)) {
|
for (const key of Object.keys(process.env).sort()) {
|
||||||
console.log(`${key}=${process.env[key]}`)
|
console.log(`${key}=${process.env[key]}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue