@@ -7441,27 +7441,53 @@ class GitCommandManager {
7441
7441
const result = [];
7442
7442
// Note, this implementation uses "rev-parse --symbolic-full-name" because the output from
7443
7443
// "branch --list" is more difficult when in a detached HEAD state.
7444
- // Note, this implementation uses "rev-parse --symbolic-full-name" because there is a bug
7445
- // in Git 2.18 that causes "rev-parse --symbolic" to output symbolic full names.
7444
+ // TODO(https://github.com/actions/checkout/issues/786): this implementation uses
7445
+ // "rev-parse --symbolic-full-name" because there is a bug
7446
+ // in Git 2.18 that causes "rev-parse --symbolic" to output symbolic full names. When
7447
+ // 2.18 is no longer supported, we can switch back to --symbolic.
7446
7448
const args = ['rev-parse', '--symbolic-full-name'];
7447
7449
if (remote) {
7448
7450
args.push('--remotes=origin');
7449
7451
}
7450
7452
else {
7451
7453
args.push('--branches');
7452
7454
}
7453
- const output = yield this.execGit(args);
7454
- for (let branch of output.stdout.trim().split('\n')) {
7455
+ const stderr = [];
7456
+ const errline = [];
7457
+ const stdout = [];
7458
+ const stdline = [];
7459
+ const listeners = {
7460
+ stderr: (data) => {
7461
+ stderr.push(data.toString());
7462
+ },
7463
+ errline: (data) => {
7464
+ errline.push(data.toString());
7465
+ },
7466
+ stdout: (data) => {
7467
+ stdout.push(data.toString());
7468
+ },
7469
+ stdline: (data) => {
7470
+ stdline.push(data.toString());
7471
+ }
7472
+ };
7473
+ // Suppress the output in order to avoid flooding annotations with innocuous errors.
7474
+ yield this.execGit(args, false, true, listeners);
7475
+ core.debug(`stderr callback is: ${stderr}`);
7476
+ core.debug(`errline callback is: ${errline}`);
7477
+ core.debug(`stdout callback is: ${stdout}`);
7478
+ core.debug(`stdline callback is: ${stdline}`);
7479
+ for (let branch of stdline) {
7455
7480
branch = branch.trim();
7456
- if (branch) {
7457
- if (branch.startsWith('refs/heads/')) {
7458
- branch = branch.substr('refs/heads/'.length);
7459
- }
7460
- else if ( branch.startsWith ('refs/remotes/')) {
7461
- branch = branch.substr('refs/remotes/'.length);
7462
- }
7463
- result.push(branch );
7481
+ if (! branch) {
7482
+ continue;
7483
+ }
7484
+ if (branch.startsWith('refs/heads/')) {
7485
+ branch = branch.substring ('refs/heads/'.length);
7486
+ }
7487
+ else if (branch.startsWith('refs/remotes/')) {
7488
+ branch = branch.substring('refs/remotes/'.length );
7464
7489
}
7490
+ result.push(branch);
7465
7491
}
7466
7492
return result;
7467
7493
});
@@ -7712,7 +7738,7 @@ class GitCommandManager {
7712
7738
return result;
7713
7739
});
7714
7740
}
7715
- execGit(args, allowAllExitCodes = false, silent = false) {
7741
+ execGit(args, allowAllExitCodes = false, silent = false, customListeners = {} ) {
7716
7742
return __awaiter(this, void 0, void 0, function* () {
7717
7743
fshelper.directoryExistsSync(this.workingDirectory, true);
7718
7744
const result = new GitOutput();
@@ -7723,20 +7749,24 @@ class GitCommandManager {
7723
7749
for (const key of Object.keys(this.gitEnv)) {
7724
7750
env[key] = this.gitEnv[key];
7725
7751
}
7752
+ const defaultListener = {
7753
+ stdout: (data) => {
7754
+ stdout.push(data.toString());
7755
+ }
7756
+ };
7757
+ const mergedListeners = Object.assign(Object.assign({}, defaultListener), customListeners);
7726
7758
const stdout = [];
7727
7759
const options = {
7728
7760
cwd: this.workingDirectory,
7729
7761
env,
7730
7762
silent,
7731
7763
ignoreReturnCode: allowAllExitCodes,
7732
- listeners: {
7733
- stdout: (data) => {
7734
- stdout.push(data.toString());
7735
- }
7736
- }
7764
+ listeners: mergedListeners
7737
7765
};
7738
7766
result.exitCode = yield exec.exec(`"${this.gitPath}"`, args, options);
7739
7767
result.stdout = stdout.join('');
7768
+ core.debug(result.exitCode.toString());
7769
+ core.debug(result.stdout);
7740
7770
return result;
7741
7771
});
7742
7772
}
@@ -13947,6 +13977,7 @@ var encode = function encode(str, defaultEncoder, charset, kind, format) {
13947
13977
13948
13978
i += 1;
13949
13979
c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));
13980
+ /* eslint operator-linebreak: [2, "before"] */
13950
13981
out += hexTable[0xF0 | (c >> 18)]
13951
13982
+ hexTable[0x80 | ((c >> 12) & 0x3F)]
13952
13983
+ hexTable[0x80 | ((c >> 6) & 0x3F)]
@@ -17572,7 +17603,7 @@ var parseObject = function (chain, val, options, valuesParsed) {
17572
17603
) {
17573
17604
obj = [];
17574
17605
obj[index] = leaf;
17575
- } else {
17606
+ } else if (cleanRoot !== '__proto__') {
17576
17607
obj[cleanRoot] = leaf;
17577
17608
}
17578
17609
}
@@ -34704,6 +34735,7 @@ var arrayPrefixGenerators = {
34704
34735
};
34705
34736
34706
34737
var isArray = Array.isArray;
34738
+ var split = String.prototype.split;
34707
34739
var push = Array.prototype.push;
34708
34740
var pushToArray = function (arr, valueOrArray) {
34709
34741
push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]);
@@ -34740,10 +34772,13 @@ var isNonNullishPrimitive = function isNonNullishPrimitive(v) {
34740
34772
|| typeof v === 'bigint';
34741
34773
};
34742
34774
34775
+ var sentinel = {};
34776
+
34743
34777
var stringify = function stringify(
34744
34778
object,
34745
34779
prefix,
34746
34780
generateArrayPrefix,
34781
+ commaRoundTrip,
34747
34782
strictNullHandling,
34748
34783
skipNulls,
34749
34784
encoder,
@@ -34759,8 +34794,23 @@ var stringify = function stringify(
34759
34794
) {
34760
34795
var obj = object;
34761
34796
34762
- if (sideChannel.has(object)) {
34763
- throw new RangeError('Cyclic object value');
34797
+ var tmpSc = sideChannel;
34798
+ var step = 0;
34799
+ var findFlag = false;
34800
+ while ((tmpSc = tmpSc.get(sentinel)) !== void undefined && !findFlag) {
34801
+ // Where object last appeared in the ref tree
34802
+ var pos = tmpSc.get(object);
34803
+ step += 1;
34804
+ if (typeof pos !== 'undefined') {
34805
+ if (pos === step) {
34806
+ throw new RangeError('Cyclic object value');
34807
+ } else {
34808
+ findFlag = true; // Break while
34809
+ }
34810
+ }
34811
+ if (typeof tmpSc.get(sentinel) === 'undefined') {
34812
+ step = 0;
34813
+ }
34764
34814
}
34765
34815
34766
34816
if (typeof filter === 'function') {
@@ -34787,6 +34837,14 @@ var stringify = function stringify(
34787
34837
if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) {
34788
34838
if (encoder) {
34789
34839
var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format);
34840
+ if (generateArrayPrefix === 'comma' && encodeValuesOnly) {
34841
+ var valuesArray = split.call(String(obj), ',');
34842
+ var valuesJoined = '';
34843
+ for (var i = 0; i < valuesArray.length; ++i) {
34844
+ valuesJoined += (i === 0 ? '' : ',') + formatter(encoder(valuesArray[i], defaults.encoder, charset, 'value', format));
34845
+ }
34846
+ return [formatter(keyValue) + (commaRoundTrip && isArray(obj) && valuesArray.length === 1 ? '[]' : '') + '=' + valuesJoined];
34847
+ }
34790
34848
return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))];
34791
34849
}
34792
34850
return [formatter(prefix) + '=' + formatter(String(obj))];
@@ -34801,32 +34859,36 @@ var stringify = function stringify(
34801
34859
var objKeys;
34802
34860
if (generateArrayPrefix === 'comma' && isArray(obj)) {
34803
34861
// we need to join elements in
34804
- objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : undefined }];
34862
+ objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : void undefined }];
34805
34863
} else if (isArray(filter)) {
34806
34864
objKeys = filter;
34807
34865
} else {
34808
34866
var keys = Object.keys(obj);
34809
34867
objKeys = sort ? keys.sort(sort) : keys;
34810
34868
}
34811
34869
34812
- for (var i = 0; i < objKeys.length; ++i) {
34813
- var key = objKeys[i];
34814
- var value = typeof key === 'object' && key.value !== undefined ? key.value : obj[key];
34870
+ var adjustedPrefix = commaRoundTrip && isArray(obj) && obj.length === 1 ? prefix + '[]' : prefix;
34871
+
34872
+ for (var j = 0; j < objKeys.length; ++j) {
34873
+ var key = objKeys[j];
34874
+ var value = typeof key === 'object' && typeof key.value !== 'undefined' ? key.value : obj[key];
34815
34875
34816
34876
if (skipNulls && value === null) {
34817
34877
continue;
34818
34878
}
34819
34879
34820
34880
var keyPrefix = isArray(obj)
34821
- ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(prefix , key) : prefix
34822
- : prefix + (allowDots ? '.' + key : '[' + key + ']');
34881
+ ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(adjustedPrefix , key) : adjustedPrefix
34882
+ : adjustedPrefix + (allowDots ? '.' + key : '[' + key + ']');
34823
34883
34824
- sideChannel.set(object, true );
34884
+ sideChannel.set(object, step );
34825
34885
var valueSideChannel = getSideChannel();
34886
+ valueSideChannel.set(sentinel, sideChannel);
34826
34887
pushToArray(values, stringify(
34827
34888
value,
34828
34889
keyPrefix,
34829
34890
generateArrayPrefix,
34891
+ commaRoundTrip,
34830
34892
strictNullHandling,
34831
34893
skipNulls,
34832
34894
encoder,
@@ -34850,7 +34912,7 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
34850
34912
return defaults;
34851
34913
}
34852
34914
34853
- if (opts.encoder !== null && opts.encoder !== undefined && typeof opts.encoder !== 'function') {
34915
+ if (opts.encoder !== null && typeof opts.encoder !== ' undefined' && typeof opts.encoder !== 'function') {
34854
34916
throw new TypeError('Encoder has to be a function.');
34855
34917
}
34856
34918
@@ -34923,6 +34985,10 @@ module.exports = function (object, opts) {
34923
34985
}
34924
34986
34925
34987
var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];
34988
+ if (opts && 'commaRoundTrip' in opts && typeof opts.commaRoundTrip !== 'boolean') {
34989
+ throw new TypeError('`commaRoundTrip` must be a boolean, or absent');
34990
+ }
34991
+ var commaRoundTrip = generateArrayPrefix === 'comma' && opts && opts.commaRoundTrip;
34926
34992
34927
34993
if (!objKeys) {
34928
34994
objKeys = Object.keys(obj);
@@ -34943,6 +35009,7 @@ module.exports = function (object, opts) {
34943
35009
obj[key],
34944
35010
key,
34945
35011
generateArrayPrefix,
35012
+ commaRoundTrip,
34946
35013
options.strictNullHandling,
34947
35014
options.skipNulls,
34948
35015
options.encode ? options.encoder : null,
0 commit comments