5 Commits

Author SHA1 Message Date
4ce87a4c82 Update caddy Docker tag to v2.11.2
Some checks failed
Build / build (pull_request) Failing after 2m23s
2026-03-11 12:01:00 +00:00
Julien Valverdé
5916520d13 Update Renovate config
All checks were successful
Build / build (push) Successful in 1m44s
2026-02-12 17:41:10 +01:00
Julien Valverdé
35df744bec Fix version extraction
All checks were successful
Build / build (push) Successful in 1m52s
2026-02-12 17:31:15 +01:00
0e4aca4296 Update caddy:2.10.2 Docker digest to c3d7ee5 (#6)
All checks were successful
Build / build (push) Successful in 1m40s
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| caddy | final | digest | `70e816c` → `c3d7ee5` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4wLjgiLCJ1cGRhdGVkSW5WZXIiOiI0My44LjUiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsicmVub3ZhdGUiXX0=-->

Reviewed-on: #6
Co-authored-by: Renovate Bot <renovate-bot@valverde.cloud>
Co-committed-by: Renovate Bot <renovate-bot@valverde.cloud>
2026-02-12 15:51:44 +01:00
d98a992440 Update caddy:2.10.2-builder Docker digest to 0166840 (#7)
All checks were successful
Build / build (push) Successful in 1m46s
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| caddy | stage | digest | `00dfa5f` → `0166840` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4wLjgiLCJ1cGRhdGVkSW5WZXIiOiI0My44LjUiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsicmVub3ZhdGUiXX0=-->

Reviewed-on: #7
Co-authored-by: Renovate Bot <renovate-bot@valverde.cloud>
Co-committed-by: Renovate Bot <renovate-bot@valverde.cloud>
2026-02-12 15:47:12 +01:00
3 changed files with 10 additions and 11 deletions

View File

@@ -26,7 +26,7 @@ jobs:
- name: Parse Caddy version - name: Parse Caddy version
id: version id: version
run: echo "version=$(grep -Eo 'caddy:[0-9]+\.[0-9]+\.[0-9]+$' ./Dockerfile | cut -d ':' -f2)" | tee -a $GITEA_OUTPUT run: echo "version=$(grep -Eo 'caddy:[0-9]+\.[0-9]+\.[0-9]+' ./Dockerfile | head -1 | cut -d ':' -f2)" | tee -a $GITEA_OUTPUT
- name: Generate Docker metadata - name: Generate Docker metadata
id: meta id: meta

View File

@@ -1,4 +1,4 @@
FROM caddy:2.10.2-builder@sha256:fbcbf6ec1f6d94bc85be547a4d46ac32d0d8119baeaffc383dee068ba332cb50 AS builder FROM caddy:2.11.2-builder@sha256:84dfc3479309c690643ada9279b3e0b4352ce56b0ec8fd802c668f42b546e98f AS builder
RUN --mount=type=cache,target=/go/pkg/mod \ RUN --mount=type=cache,target=/go/pkg/mod \
--mount=type=cache,target=/root/.cache/go-build \ --mount=type=cache,target=/root/.cache/go-build \
xcaddy build \ xcaddy build \
@@ -7,5 +7,5 @@ RUN --mount=type=cache,target=/go/pkg/mod \
--with github.com/hslatman/caddy-crowdsec-bouncer/crowdsec@v0.9.2 \ --with github.com/hslatman/caddy-crowdsec-bouncer/crowdsec@v0.9.2 \
--with github.com/caddy-dns/namecheap@master --with github.com/caddy-dns/namecheap@master
FROM caddy:2.10.2@sha256:70e816c44fb79071fc4cd939ffda76e3b629642309efe31a4fb0ed45873be464 FROM caddy:2.11.2@sha256:1e40b251ca9639ead7b5cd2cedcc8765adfbabb99450fe23f130eefabf50f4bc
COPY --from=builder /usr/bin/caddy /usr/bin/caddy COPY --from=builder /usr/bin/caddy /usr/bin/caddy

View File

@@ -7,12 +7,11 @@
"labels": ["renovate"], "labels": ["renovate"],
"configMigration": true, "configMigration": true,
"prHourlyLimit": 0, "prHourlyLimit": 0,
"docker-compose": { "packageRules": [
"hostRules": [
{ {
"matchHost": "docker.io", "matchPackageNames": ["*"],
"concurrentRequestLimit": 2 "groupName": "all dependencies",
"groupSlug": "all-deps"
} }
] ]
} }
}