diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 968f53b..7afb88d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index b85bec3..fc934f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -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 diff --git a/go.mod b/go.mod index a0f354a..6a27d0e 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module insultgen -go 1.17 +go 1.25