Skip to content

Commit 7cba3f9

Browse files
chore: bump golang v1.24
1 parent c2f300a commit 7cba3f9

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/beekeeper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
SETUP_CONTRACT_IMAGE: "ethersphere/bee-localchain"
1515
SETUP_CONTRACT_IMAGE_TAG: "0.9.2"
1616
BEELOCAL_BRANCH: "main"
17-
BEEKEEPER_BRANCH: "master"
17+
BEEKEEPER_BRANCH: "golang-1.24"
1818
BEEKEEPER_METRICS_ENABLED: false
1919
REACHABILITY_OVERRIDE_PUBLIC: true
2020
BATCHFACTOR_OVERRIDE_PUBLIC: 2

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
uses: golangci/golangci-lint-action@v6
7171
with:
7272
skip-cache: false
73-
version: v1.61.0
73+
version: v1.64.5
7474
- name: Whitespace check
7575
run: make check-whitespace
7676
- name: go mod tidy check
@@ -88,7 +88,7 @@ jobs:
8888
cache: false
8989
go-version-file: go.mod
9090
- name: Cache Go Modules
91-
uses: actions/cache@v3
91+
uses: actions/cache@v4
9292
with:
9393
path: |
9494
~/.cache/go-build
@@ -97,7 +97,7 @@ jobs:
9797
- name: Test with code coverage
9898
run: make cover=1 test-ci
9999
- name: Upload coverage to Codecov
100-
uses: codecov/codecov-action@v3
100+
uses: codecov/codecov-action@v5
101101
with:
102102
token: ${{ secrets.CODECOV_TOKEN }}
103103
fail_ci_if_error: true

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GO ?= go
22
GOBIN ?= $$($(GO) env GOPATH)/bin
33
GOLANGCI_LINT ?= $(GOBIN)/golangci-lint
4-
GOLANGCI_LINT_VERSION ?= v1.61.0
4+
GOLANGCI_LINT_VERSION ?= v1.64.5
55
GOGOPROTOBUF ?= protoc-gen-gogofaster
66
GOGOPROTOBUF_VERSION ?= v1.3.1
77
BEEKEEPER_INSTALL_DIR ?= $(GOBIN)

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/ethersphere/bee/v2
22

3-
go 1.23
4-
5-
toolchain go1.23.0
3+
go 1.24
64

75
require (
86
contrib.go.opencensus.io/exporter/prometheus v0.4.2

0 commit comments

Comments
 (0)