Compare commits

..

6 Commits

Author SHA1 Message Date
835d44d371 Merge pull request 'chore(deps): update docker/login-action action to v4' (#12) from renovate/docker-login-action-4.x into main
Some checks failed
Build / build (push) Failing after 8s
Reviewed-on: #12
2026-03-07 23:24:29 +13:00
081a62be3e Merge pull request 'chore(deps): update docker/setup-buildx-action action to v4' (#13) from renovate/docker-setup-buildx-action-4.x into main
Some checks failed
Build / build (push) Failing after 8s
Reviewed-on: #13
2026-03-07 23:22:14 +13:00
00dc445b47 Merge pull request 'chore(deps): update docker/build-push-action action to v7' (#14) from renovate/docker-build-push-action-7.x into main
Some checks failed
Build / build (push) Failing after 11s
Reviewed-on: #14
2026-03-07 23:20:29 +13:00
Renovate Bot
6dbbe3dedf chore(deps): update docker/build-push-action action to v7
Some checks failed
Build / build (pull_request) Failing after 54s
2026-03-06 00:01:21 +00:00
Renovate Bot
026e5c703d chore(deps): update docker/setup-buildx-action action to v4
Some checks failed
Build / build (pull_request) Failing after 31s
2026-03-05 12:01:23 +00:00
Renovate Bot
93e66ee294 chore(deps): update docker/login-action action to v4
Some checks failed
Build / build (pull_request) Failing after 1m8s
2026-03-04 12:01:17 +00:00
2 changed files with 5 additions and 5 deletions

View File

@@ -14,17 +14,17 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- name: Login to Docker registry - name: Login to Docker registry
uses: docker/login-action@v3 uses: docker/login-action@v4
with: with:
registry: git.nice.net.nz registry: git.nice.net.nz
username: hads username: hads
password: ${{ secrets.PAT }} password: ${{ secrets.PAT }}
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v4
- name: Build and push - name: Build and push
uses: docker/build-push-action@v6 uses: docker/build-push-action@v7
with: with:
context: . context: .
file: ./Dockerfile file: ./Dockerfile

View File

@@ -1,6 +1,6 @@
FROM caddy:2.11.2 AS base FROM caddy:2.10.2 AS base
FROM caddy:2.11.2-builder-alpine AS caddybuild FROM caddy:2.10.2-builder-alpine AS caddybuild
RUN xcaddy build \ RUN xcaddy build \
--with github.com/greenpau/caddy-security \ --with github.com/greenpau/caddy-security \
--with github.com/lucaslorentz/caddy-docker-proxy/v2 \ --with github.com/lucaslorentz/caddy-docker-proxy/v2 \