diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e03ab2..52145a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Set up QEMU id: qemu diff --git a/Dockerfile b/Dockerfile index 684df6e..d4e909f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.25.2 +FROM golang:1.25.3 ARG TARGETOS ARG TARGETARCH @@ -76,7 +76,7 @@ RUN set -x \ && bingo get -l kubepack.dev/chart-doc-gen@v0.4.7 \ && bingo get -l github.com/go-bindata/go-bindata/go-bindata@latest \ && go install golang.org/x/vuln/cmd/govulncheck@latest \ - && go install github.com/abice/go-enum@latest \ + && go install github.com/abice/go-enum@v0.9.2 \ && export GOBIN= \ && cd /go \ && rm -rf /go/pkg /go/src diff --git a/Makefile b/Makefile index b9a02b1..32a1d60 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ SHELL=/bin/bash -o pipefail REGISTRY ?= appscode BIN ?= golang-dev IMAGE := $(REGISTRY)/$(BIN) -VERSION ?= 1.25.2 +VERSION ?= 1.25.3 SRC_REG ?= DOCKER_PLATFORMS := linux/amd64 linux/arm64 diff --git a/README.md b/README.md index 4216b75..e665985 100644 --- a/README.md +++ b/README.md @@ -3,5 +3,5 @@ GO Docker image used for building AppsCode projects ```console -docker pull appscode/golang-dev:1.25.2 +docker pull appscode/golang-dev:1.25.3 ```