ci: drop deprecated NC31 from matrix, enable NC33, stage NC34
Nextcloud 31 reached deprecation (02/2026), so remove it from the integration matrix. Enable NC33 (previously disabled pending upstream app support) and add NC34 as a commented, ready-to-enable entry. - test.yml: nextcloud_version is now [32, 33]; 34 commented. Image pins updated to match (32.0.11, 33.0.5 active; 34.0.0 commented). The Renovate customManager regex already tracks commented entries, so 34 is digest-managed once present. - renovate.json: drop the nextcloud-31 pin rule, add nextcloud-34 (/^34\./). docker-compose.yml already defaults to 32.0.11 (Renovate-pinned to 32.x), so no change there — the NC31 seen in local runs comes from a shell-exported NEXTCLOUD_IMAGE override, not the compose default. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
060084029f
commit
ec15cad234
@@ -59,9 +59,9 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
nextcloud_version:
|
||||
- "31"
|
||||
- "32"
|
||||
# - "33" # Disabled until all upstream apps support NC 33
|
||||
- "33"
|
||||
# - "34" # Disabled until all upstream apps support NC 34
|
||||
mode:
|
||||
- "single-user"
|
||||
- "multi-user-basic"
|
||||
@@ -69,14 +69,14 @@ jobs:
|
||||
- "keycloak"
|
||||
include:
|
||||
# Version-specific image pins — Renovate updates these via customManagers in renovate.json
|
||||
# Each entry is pinned to its major version (e.g., NC 31 only gets 31.x updates)
|
||||
- nextcloud_version: "31"
|
||||
nextcloud_image: "docker.io/library/nextcloud:31.0.14@sha256:07ec73cc816e58d6f45a162cd53ef886462c29271a23fc68d0124cec276e3767"
|
||||
# Each entry is pinned to its major version (e.g., NC 32 only gets 32.x updates)
|
||||
- nextcloud_version: "32"
|
||||
nextcloud_image: "docker.io/library/nextcloud:32.0.11@sha256:3ae4045d53e890680ec35e3e4349332123d959c72808aceb44930e79f1be9b9b"
|
||||
# Disabled until all upstream apps support NC 33
|
||||
# - nextcloud_version: "33"
|
||||
# nextcloud_image: "docker.io/library/nextcloud:33.0.5@sha256:56bdc45109067500fd0832fa64832b7c77a167d9394cbf5f0f4b59740b94194d"
|
||||
- nextcloud_version: "33"
|
||||
nextcloud_image: "docker.io/library/nextcloud:33.0.5@sha256:56bdc45109067500fd0832fa64832b7c77a167d9394cbf5f0f4b59740b94194d"
|
||||
# Disabled until all upstream apps support NC 34
|
||||
# - nextcloud_version: "34"
|
||||
# nextcloud_image: "docker.io/library/nextcloud:34.0.0@sha256:851ca6ef9da101ce3c8a32ec7b6fc65a726b380b5f466307a54c17d32fb77c9a"
|
||||
|
||||
# Mode-specific properties
|
||||
- mode: single-user
|
||||
|
||||
+4
-4
@@ -14,10 +14,6 @@
|
||||
},
|
||||
{
|
||||
"description": "Pin each Nextcloud matrix entry to its own major version",
|
||||
"matchDepNames": ["nextcloud-31"],
|
||||
"allowedVersions": "/^31\\./"
|
||||
},
|
||||
{
|
||||
"matchDepNames": ["nextcloud-32"],
|
||||
"allowedVersions": "/^32\\./"
|
||||
},
|
||||
@@ -25,6 +21,10 @@
|
||||
"matchDepNames": ["nextcloud-33"],
|
||||
"allowedVersions": "/^33\\./"
|
||||
},
|
||||
{
|
||||
"matchDepNames": ["nextcloud-34"],
|
||||
"allowedVersions": "/^34\\./"
|
||||
},
|
||||
{
|
||||
"description": "Pin docker-compose.yml Nextcloud image to 32.x",
|
||||
"matchPackageNames": ["docker.io/library/nextcloud"],
|
||||
|
||||
Reference in New Issue
Block a user