Update WordPress 6.7.2 -> 6.8.0

This commit is contained in:
2025-08-15 18:28:18 +02:00
parent 0475842323
commit 912b0e666c
2 changed files with 22 additions and 4 deletions

View File

@@ -20,7 +20,8 @@ group "default" {
"6_6_2", "6_6_2",
"6_7_0", "6_7_0",
"6_7_1", "6_7_1",
"6_7_2" "6_7_2",
"6_8_0"
] ]
} }
@@ -253,6 +254,14 @@ target "6_7_2" {
inherits = ["build-dockerfile", "build-platforms", "build-common"] inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.7.2") cache-from = get-cache-from("6.7.2")
cache-to = get-cache-to("6.7.2") cache-to = get-cache-to("6.7.2")
tags = get-tags("6.7.2", ["6", "6.7", "latest"]) tags = get-tags("6.7.2", ["6.7"])
args = get-args("6.7.2") args = get-args("6.7.2")
}
target "6_8_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.8.0")
cache-to = get-cache-to("6.8.0")
tags = get-tags("6.8.0", ["6", "6.8", "latest"])
args = get-args("6.8.0")
} }

View File

@@ -20,7 +20,8 @@ group "default" {
"6_6_2", "6_6_2",
"6_7_0", "6_7_0",
"6_7_1", "6_7_1",
"6_7_2" "6_7_2",
"6_8_0"
] ]
} }
@@ -253,6 +254,14 @@ target "6_7_2" {
inherits = ["build-dockerfile", "build-platforms", "build-common"] inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.7.2") cache-from = get-cache-from("6.7.2")
cache-to = get-cache-to("6.7.2") cache-to = get-cache-to("6.7.2")
tags = get-tags("6.7.2", ["6", "6.7", "latest"]) tags = get-tags("6.7.2", ["6.7"])
args = get-args("6.7.2", "6.5.0") args = get-args("6.7.2", "6.5.0")
} }
target "6_8_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.8.0")
cache-to = get-cache-to("6.8.0")
tags = get-tags("6.8.0", ["6", "6.8", "latest"])
args = get-args("6.8.0", "6.5.0")
}