Update GraalVM Tests

This commit is contained in:
mahabaleshwars 2025-09-15 08:07:18 +05:30
commit 70ede9d147
4 changed files with 677 additions and 130 deletions

View file

@ -94747,7 +94747,7 @@ function convertVersionToSemver(version) {
}
exports.convertVersionToSemver = convertVersionToSemver;
function getGitHubHttpHeaders() {
const resolvedToken = process.env.GITHUB_TOKEN || core.getInput('token');
const resolvedToken = core.getInput('token') || process.env.GITHUB_TOKEN;
const auth = !resolvedToken ? undefined : `token ${resolvedToken}`;
const headers = {
accept: 'application/vnd.github.VERSION.raw'