Skip to content

Commit 2cb912d

Browse files
authored
Update go to 1.23.2 (#69)
- Including plumbing, CI/CD etc Change-Id: I73383ae180cf1476e8e574293b04f6f028263063 Signed-off-by: Ian Meyer <[email protected]>
1 parent 88f6842 commit 2cb912d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v4
2121
- uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.23.1'
23+
go-version: '1.23.2'
2424
cache: false
2525
- name: golangci-lint
2626
uses: golangci/golangci-lint-action@v6

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bazel_dep(name = "gazelle", version = "0.38.0", repo_name = "gazelle")
1010
bazel_dep(name = "rules_pkg", version = "1.0.1")
1111

1212
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk")
13-
go_sdk.download(version = "1.23.1")
13+
go_sdk.download(version = "1.23.2")
1414

1515
go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
1616
go_deps.from_file(go_mod = "//:go.mod")

check-go-versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
set -euo pipefail
4-
set -x
4+
55
# Everything should match what's in go.mod
66
GV=$(grep "^go" go.mod | awk '{print $2}' | tr -d 'v')
77

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/imeyer/tdiscuss
22

3-
go 1.23.1
3+
go 1.23.2
44

55
require (
66
github.com/jackc/pgx/v5 v5.7.1

0 commit comments

Comments
 (0)