Bump version to 1.3.0.

This commit is contained in:
Fabio Niephaus 2025-02-10 09:58:33 +01:00 committed by Fabio Niephaus
parent 300d65ee39
commit dea0e3da95
7 changed files with 8 additions and 14 deletions

8
dist/cleanup.js generated vendored
View File

@ -88230,13 +88230,7 @@ async function run() {
await ignoreErrors(processSBOM());
await ignoreErrors(saveCache());
}
if (require.main === module) {
run();
}
else {
// https://nodejs.org/api/modules.html#modules_accessing_the_main_module
coreExports.info('the script is loaded as a module, so skipping the execution');
}
run();
export { run };
//# sourceMappingURL=cleanup.js.map

2
dist/cleanup.js.map generated vendored

File diff suppressed because one or more lines are too long

2
dist/main.js generated vendored
View File

@ -39,7 +39,7 @@ import * as https from 'node:https';
import * as zlib from 'node:zlib';
import require$$1$5 from 'tty';
const ACTION_VERSION = '1.2.8';
const ACTION_VERSION = '1.3.0';
const INPUT_VERSION = 'version';
const INPUT_GDS_TOKEN = 'gds-token';
const INPUT_JAVA_VERSION = 'java-version';

2
dist/main.js.map generated vendored

File diff suppressed because one or more lines are too long

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "setup-graalvm",
"version": "1.2.8",
"version": "1.3.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "setup-graalvm",
"version": "1.2.8",
"version": "1.3.0",
"license": "UPL",
"dependencies": {
"@actions/cache": "^4.0.0",

View File

@ -2,7 +2,7 @@
"name": "setup-graalvm",
"author": "GraalVM Community",
"description": "GitHub Action for GraalVM",
"version": "1.2.8",
"version": "1.3.0",
"type": "module",
"private": true,
"repository": {

View File

@ -1,6 +1,6 @@
import * as otypes from '@octokit/types'
export const ACTION_VERSION = '1.2.8'
export const ACTION_VERSION = '1.3.0'
export const INPUT_VERSION = 'version'
export const INPUT_GDS_TOKEN = 'gds-token'