4 Commits

Author SHA1 Message Date
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:23e70f63a88bacd9b0564d055eed5c25b98e90930876cca01aee1f5d1ae29748 AS builder FROM caddy:2.10.2-builder@sha256:01668408cc26e2e00c9d067c30cb43b2ba14ad1f2808beda55503cb2a31f59dc 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.10.2@sha256:c3d7ee5d2b11f9dc54f947f68a734c84e9c9666c92c88a7f30b9cba5da182adb
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"
} }
] ]
} }
}