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 .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: setup-go
uses: actions/setup-go@v7
with:
go-version: 1.26.x
go-version: 1.27.x
check-latest: true
cache: true
- name: ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: setup-go
uses: actions/setup-go@v7
with:
go-version: '1.25.x'
go-version: '1.27.x'
cache: false
- name: Set up Git name and email
run: |
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/bufbuild/makego

go 1.25.6
go 1.26.7

require (
github.com/stretchr/testify v1.12.0
Expand Down
2 changes: 1 addition & 1 deletion make/go/dep_bufstyle.mk
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ BUFSTYLE_GO_VERSION := $(call _major_minor,$(shell go list -m -f '{{.GoVersion}}

# Settable
# https://github.com/bufbuild/bufstyle-go/releases
BUFSTYLE_VERSION ?= v0.5.0
BUFSTYLE_VERSION ?= v0.6.0

BUFSTYLE := $(CACHE_BIN)/bufstyle

Expand Down
2 changes: 1 addition & 1 deletion make/go/dep_godoclint.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GODOCLINT_GO_VERSION := $(call _major_minor,$(GODOCLINT_GOTOOLCHAIN_VERSION))
#
# Based off of dev branch.
# https://github.com/bufbuild/godoc-lint/commits/dev
GODOCLINT_VERSION ?= 26c7b506fc2bf37a67fc2b42a3d9825c7ade2068
GODOCLINT_VERSION ?= cbd52eb03aba73a3658b97058e44039f41e45a33

GODOCLINT := $(CACHE_BIN)/godoclint

Expand Down
4 changes: 2 additions & 2 deletions make/go/dep_golangci_lint.mk
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ GOLANGCI_LINT_ARCH := $(UNAME_ARCH)
endif

# Settable
# https://github.com/golangci/golangci-lint/releases 20260506 checked 20260512
GOLANGCI_LINT_VERSION ?= v2.12.2
# https://github.com/golangci/golangci-lint/releases 20260819 checked 20260820
GOLANGCI_LINT_VERSION ?= v2.13.0

GOLANGCI_LINT := $(CACHE_BIN)/golangci-lint

Expand Down
2 changes: 1 addition & 1 deletion make/go/go.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ GO_TEST_WASM_BINS ?=
# Settable
GO_GET_PKGS ?=
# Settable
GO_MOD_VERSION ?= 1.25.6
GO_MOD_VERSION ?= 1.26.7
# Settable
GO_MOD_TOOLCHAIN ?=
# Settable
Expand Down
Loading