2 Commits

Author SHA1 Message Date
7b69054815 fix(docker): update repository label (#5)
All checks were successful
Release / Tag release (push) Successful in 8s
Release / Create Release (push) Successful in 2s
Release / Publish Docker Images (push) Successful in 1m20s
Snyk / security (push) Successful in 24s
Reviewed-on: #5
2026-01-04 12:58:16 +00:00
784e3fd40c feat(dependencies): upgrade to Go 1.25 (#4)
All checks were successful
Snyk / security (push) Successful in 14s
Reviewed-on: #4
2026-01-04 12:51:19 +00:00
3 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v6.1.0
with:
go-version: "1.23"
go-version: "1.25"
# - name: uv cache
# uses: actions/cache@v5

View File

@@ -1,10 +1,10 @@
FROM golang:1.23-alpine as build
FROM golang:1.25-alpine as build
WORKDIR /go/src/app
COPY . /go/src/app
RUN CGO_ENABLED=0 go build -o /go/bin/app
FROM gcr.io/distroless/base-debian13
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://gitlab.com/luketainton/insultgen"
LABEL org.opencontainers.image.source="https://git.tainton.uk/repos/insultgen"
COPY --from=build /go/bin/app /
CMD ["/app"]

2
go.mod
View File

@@ -1,3 +1,3 @@
module insultgen
go 1.17
go 1.25