5 Commits

Author SHA1 Message Date
e99100b463 Update all dependencies
Some checks failed
Build / build (pull_request) Failing after 2m4s
2026-03-06 12:01:36 +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 13 additions and 14 deletions

View File

@@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Checkout
uses: actions/checkout@v6
- name: Login to Container Registry
if: ${{ gitea.event_name != 'pull_request' }}
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: docker.valverde.cloud
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
@@ -26,11 +26,11 @@ jobs:
- name: Parse Caddy 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
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: |
docker.valverde.cloud/${{ gitea.repository }}
@@ -46,7 +46,7 @@ jobs:
latest=true
- name: Build
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ./Dockerfile

View File

@@ -1,4 +1,4 @@
FROM caddy:2.10.2-builder@sha256:00dfa5f39333243282c82d73de2acfe0609cb4a7879eb96946dcdfbf3a27ff87 AS builder
FROM caddy:2.10.2-builder@sha256:01668408cc26e2e00c9d067c30cb43b2ba14ad1f2808beda55503cb2a31f59dc AS builder
RUN --mount=type=cache,target=/go/pkg/mod \
--mount=type=cache,target=/root/.cache/go-build \
xcaddy build \

View File

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