Bump version to 1.0.10.

This commit is contained in:
Fabio Niephaus 2023-02-13 10:11:09 +01:00
parent 8b27096bbf
commit 4356481765
No known key found for this signature in database
GPG Key ID: F21CF5275F31DFD6
4 changed files with 6 additions and 5 deletions

BIN
dist/main/index.js generated vendored

Binary file not shown.

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "setup-graalvm",
"version": "1.0.9",
"version": "1.0.10",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "setup-graalvm",
"version": "1.0.9",
"version": "1.0.10",
"license": "UPL",
"dependencies": {
"@actions/cache": "^3.0.4",

View File

@ -1,6 +1,6 @@
{
"name": "setup-graalvm",
"version": "1.0.9",
"version": "1.0.10",
"private": true,
"description": "GitHub Action for GraalVM",
"main": "lib/main.js",
@ -11,7 +11,8 @@
"lint": "eslint src/**/*.ts",
"package": "ncc build -o dist/main src/main.ts && ncc build -o dist/cleanup src/cleanup.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
"all-but-test": "npm run build && npm run format && npm run lint && npm run package",
"all": "npm run all-but-test && npm test"
},
"repository": {
"type": "git",

View File

@ -32,7 +32,7 @@ export async function downloadGraalVMEE(
version: string,
javaVersion: string
): Promise<string> {
const userAgent = `GraalVMGitHubAction/1.0.9 (arch:${c.GRAALVM_ARCH}; os:${c.GRAALVM_PLATFORM}; java:${javaVersion})`
const userAgent = `GraalVMGitHubAction/1.0.10 (arch:${c.GRAALVM_ARCH}; os:${c.GRAALVM_PLATFORM}; java:${javaVersion})`
const baseArtifact = await fetchArtifact(
userAgent,
'isBase:True',