Skip to content

Commit

Permalink
feat: geth v1.14.7 (#34)
Browse files Browse the repository at this point in the history
* feat: geth v1.14.7; regular Go only, not Bazel

* fix: Bazel updates + latest Go/Gazelle rules

* fix: remove unnecessary `errors.Unwrap()`

* chore: bump CI Go version
  • Loading branch information
ARR4N authored Aug 10, 2024
1 parent 697c617 commit e405591
Show file tree
Hide file tree
Showing 13 changed files with 1,850 additions and 558 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup
uses: actions/setup-go@v5
with:
go-version: '1.20'
go-version: '1.21'

- name: Build
run: go build -v ./...
Expand Down
4 changes: 2 additions & 2 deletions BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load("@rules_go//go:def.bzl", "go_library", "go_test")
load("@gazelle//:def.bzl", "gazelle")
load("@aspect_bazel_lib//lib:write_source_files.bzl", "write_source_files")
load("@gazelle//:def.bzl", "gazelle")
load("@rules_go//go:def.bzl", "go_library", "go_test")

# No need for gazelle:prefix as it reads from go.mod
gazelle(
Expand Down
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ module(

bazel_dep(name = "aspect_bazel_lib", version = "2.5.1")

bazel_dep(name = "rules_go", version = "0.46.0")
bazel_dep(name = "gazelle", version = "0.35.0")
bazel_dep(name = "rules_go", version = "0.48.0")
bazel_dep(name = "gazelle", version = "0.37.0")

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

go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
go_deps.from_file(go_mod = "//:go.mod")
Expand Down
Loading

0 comments on commit e405591

Please sign in to comment.