Compare commits

...

6 Commits

5 changed files with 6 additions and 11 deletions
+1 -1
View File
@@ -23,6 +23,6 @@ jobs:
uses: renovatebot/github-action@502904f1cefdd70cba026cb1cbd8c53a1443e91b # v44.1.0 uses: renovatebot/github-action@502904f1cefdd70cba026cb1cbd8c53a1443e91b # v44.1.0
with: with:
configurationFile: .github/renovate.json configurationFile: .github/renovate.json
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.RENOVATE_TOKEN }}
env: env:
LOG_LEVEL: info LOG_LEVEL: info
+1 -6
View File
@@ -81,12 +81,7 @@ charon.db
*~ *~
.DS_Store .DS_Store
*.xcf *.xcf
# VS Code - ignore settings but keep shared configs
.vscode/*
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.vscode.backup*/
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# Logs & Temp Files # Logs & Temp Files
+2 -2
View File
@@ -48,7 +48,7 @@ RUN --mount=type=cache,target=/app/frontend/node_modules/.cache \
npm run build npm run build
# ---- Backend Builder ---- # ---- Backend Builder ----
FROM --platform=$BUILDPLATFORM golang:1.25.5-alpine AS backend-builder FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS backend-builder
# Copy xx helpers for cross-compilation # Copy xx helpers for cross-compilation
COPY --from=xx / / COPY --from=xx / /
@@ -98,7 +98,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
# ---- Caddy Builder ---- # ---- Caddy Builder ----
# Build Caddy from source to ensure we use the latest Go version and dependencies # Build Caddy from source to ensure we use the latest Go version and dependencies
# This fixes vulnerabilities found in the pre-built Caddy images (e.g. CVE-2025-59530, stdlib issues) # This fixes vulnerabilities found in the pre-built Caddy images (e.g. CVE-2025-59530, stdlib issues)
FROM --platform=$BUILDPLATFORM golang:1.25.5-alpine AS caddy-builder FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS caddy-builder
ARG TARGETOS ARG TARGETOS
ARG TARGETARCH ARG TARGETARCH
ARG CADDY_VERSION ARG CADDY_VERSION
+1 -1
View File
@@ -1,6 +1,6 @@
module github.com/Wikid82/charon/backend module github.com/Wikid82/charon/backend
go 1.25.5 go 1.23
require ( require (
github.com/containrrr/shoutrrr v0.8.0 github.com/containrrr/shoutrrr v0.8.0
+1 -1
View File
@@ -1,3 +1,3 @@
go 1.25.5 go 1.23
use ./backend use ./backend