Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.2
FROM golang:1.25.3

ARG TARGETOS
ARG TARGETARCH
Expand Down Expand Up @@ -76,7 +76,7 @@ RUN set -x \
&& bingo get -l kubepack.dev/[email protected] \
&& 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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```