diff --git a/.woodpecker/test.yaml b/.woodpecker/test.yaml index a0a7509..b2086bc 100644 --- a/.woodpecker/test.yaml +++ b/.woodpecker/test.yaml @@ -4,6 +4,6 @@ when: steps: golang: - image: golang:1.23.1 + image: golang:1.23.2 commands: - go test -v ./... diff --git a/Dockerfile b/Dockerfile index 96ebac8..cbb14eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM golang:1.23.1 AS builder +FROM golang:1.23.2 AS builder WORKDIR /app