Skip to content

Commit

Permalink
Update go to 1.23.2 (#69)
Browse files Browse the repository at this point in the history
- Including plumbing, CI/CD etc

Change-Id: I73383ae180cf1476e8e574293b04f6f028263063

Signed-off-by: Ian Meyer <[email protected]>
  • Loading branch information
imeyer authored Oct 15, 2024
1 parent 88f6842 commit 2cb912d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.1'
go-version: '1.23.2'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ bazel_dep(name = "gazelle", version = "0.38.0", repo_name = "gazelle")
bazel_dep(name = "rules_pkg", version = "1.0.1")

go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk")
go_sdk.download(version = "1.23.1")
go_sdk.download(version = "1.23.2")

go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
go_deps.from_file(go_mod = "//:go.mod")
Expand Down
2 changes: 1 addition & 1 deletion check-go-versions.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

set -euo pipefail
set -x

# Everything should match what's in go.mod
GV=$(grep "^go" go.mod | awk '{print $2}' | tr -d 'v')

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/imeyer/tdiscuss

go 1.23.1
go 1.23.2

require (
github.com/jackc/pgx/v5 v5.7.1
Expand Down

0 comments on commit 2cb912d

Please sign in to comment.