Skip to content

Commit 6e36713

Browse files
dnestorovjovanov
authored andcommitted
Use println for output of fetching new versions task
1 parent 9d74fe8 commit 6e36713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/tck-build-logic/src/main/groovy/org/graalvm/internal/tck/updaters/FetchExistingLibrariesWithNewerVersionsTask.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ abstract class FetchExistingLibrariesWithNewerVersionsTask extends DefaultTask {
5454
}
5555
def pairs = map.collect { k, v -> [name: k, versions: v] }
5656

57-
new File(System.getenv("GITHUB_OUTPUT")).append(JsonOutput.toJson(pairs))
57+
println JsonOutput.toJson(pairs)
5858
}
5959

6060
static List<String> getNewerVersionsFor(String library, String startingVersion) {

0 commit comments

Comments
 (0)