Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 Dockerfile.packaging
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.9-bookworm AS build
FROM golang:1.25.12-bookworm AS build

# build.sh shells out to fpm to produce the .deb/.rpm packages. fpm is a Ruby
# gem (needs ruby + ruby-dev + a C toolchain), and the rpm target needs
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.9-bookworm
FROM golang:1.25.12-bookworm
LABEL maintainer="github@github.com"

RUN apt-get update
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/github/gh-ost

go 1.25.9
go 1.25.12

require (
github.com/DataDog/datadog-go/v5 v5.8.3
Expand Down
2 changes: 1 addition & 1 deletion script/ensure-go-installed
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

PREFERRED_GO_VERSION=go1.25.9
PREFERRED_GO_VERSION=go1.25.12
Comment thread
ericyan marked this conversation as resolved.
SUPPORTED_GO_VERSIONS='go1.2[012345]'

GO_PKG_DARWIN=${PREFERRED_GO_VERSION}.darwin-amd64.pkg
Expand Down
Loading