Skip to content

Commit 4356481

Browse files
committed
Bump version to 1.0.10.
1 parent 8b27096 commit 4356481

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

dist/main/index.js

Lines changed: 9 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-graalvm",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"private": true,
55
"description": "GitHub Action for GraalVM",
66
"main": "lib/main.js",
@@ -11,7 +11,8 @@
1111
"lint": "eslint src/**/*.ts",
1212
"package": "ncc build -o dist/main src/main.ts && ncc build -o dist/cleanup src/cleanup.ts",
1313
"test": "jest",
14-
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
14+
"all-but-test": "npm run build && npm run format && npm run lint && npm run package",
15+
"all": "npm run all-but-test && npm test"
1516
},
1617
"repository": {
1718
"type": "git",

src/gds.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export async function downloadGraalVMEE(
3232
version: string,
3333
javaVersion: string
3434
): Promise<string> {
35-
const userAgent = `GraalVMGitHubAction/1.0.9 (arch:${c.GRAALVM_ARCH}; os:${c.GRAALVM_PLATFORM}; java:${javaVersion})`
35+
const userAgent = `GraalVMGitHubAction/1.0.10 (arch:${c.GRAALVM_ARCH}; os:${c.GRAALVM_PLATFORM}; java:${javaVersion})`
3636
const baseArtifact = await fetchArtifact(
3737
userAgent,
3838
'isBase:True',

0 commit comments

Comments
 (0)