We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 928ff72 commit b5f4d15Copy full SHA for b5f4d15
docker-bake.hcl
@@ -68,7 +68,7 @@ variable "JAVA17_VERSION" {
68
}
69
70
variable "JAVA21_VERSION" {
71
- default = "21.0.8_9"
+ default = "21.0.9_10"
72
73
74
variable "JAVA25_VERSION" {
@@ -96,7 +96,7 @@ function "javaversion" {
96
params = [jdk]
97
result = (equal(17, jdk)
98
? "${JAVA17_VERSION}"
99
- : equal(21, jdk)
+ : equal(21, jdk)
100
? "${JAVA21_VERSION}"
101
: "${JAVA25_VERSION}")
102
@@ -107,7 +107,7 @@ function "alpine_platforms" {
107
108
109
? ["linux/amd64"]
110
- : ["linux/amd64", "linux/arm64"])
+ : ["linux/amd64", "linux/arm64"])
111
112
113
# Return an array of Debian platforms to use depending on the jdk passed as parameter
0 commit comments