Skip to content
Merged
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 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
6 changes: 3 additions & 3 deletions script/ensure-go-installed
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/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
GO_PKG_DARWIN_SHA=2254498b78a9bf81188e9daca5573df68ca04e5a67cbd508461b3f37506cef83
GO_PKG_DARWIN_SHA=2c6b49d08e1ba340d0608d4c64ea5dbbd7f635763dec456fb87ad0d0d6629367

GO_PKG_LINUX=${PREFERRED_GO_VERSION}.linux-amd64.tar.gz
GO_PKG_LINUX_SHA=00859d7bd6defe8bf84d9db9e57b9a4467b2887c18cd93ae7460e713db774bc1
GO_PKG_LINUX_SHA=234828b7a89e0e303d2556310ee549fbcf253d28de937bac3da13d6294262ac1

export ROOTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd $ROOTDIR
Expand Down
Loading