Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat nv25 #1999

Merged
merged 1 commit into from
Mar 24, 2025
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ orbs:
executors:
golang:
docker:
- image: cimg/go:1.22.3
- image: cimg/go:1.23.7
resource_class: 2xlarge
ubuntu:
docker:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
lid-docker-compose:
description: 'Run LID integration tests'
docker:
- image: cimg/go:1.22 # Primary container to run Go tests
- image: cimg/go:1.23.7 # Primary container to run Go tests
environment:
YUGABYTE_HOST: yugabyte
- image: yugabytedb/yugabyte:2024.1.3.0-b105 # Service container for YugabyteDB
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
linux: false
darwin: true
- golang/install:
version: "1.22.3"
version: "1.23.7"
- run:
name: Install pkg-config
command: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
default: golang
golangci-lint-version:
type: string
default: 1.56.2
default: 1.60.1
concurrency:
type: string
default: '2'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main

env:
GO_VERSION: 1.22.3
GO_VERSION: 1.23.7

jobs:
ci-lint:
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:

- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.58.1
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.60.1
shell: bash

- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion cmd/boost/wallet_cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ var walletBalance = &cli.Command{
}
return cmd.PrintJson(out)
} else {
afmt.Printf(fmt.Sprintf("%s (warning: %s)\n", types.FIL(balance), warningMessage))
afmt.Printf("%s", fmt.Sprintf("%s (warning: %s)\n", types.FIL(balance), warningMessage))
}
} else {
if cctx.Bool("json") {
Expand Down
2 changes: 1 addition & 1 deletion cmd/boostd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ func initBoost(ctx context.Context, cctx *cli.Context, marketsRepo lotus_repo.Lo
if !v.APIVersion.EqMajorMinor(lapi.FullAPIVersion1) {
msg := fmt.Sprintf("Remote API version didn't match (expected %s, remote %s)",
lapi.FullAPIVersion1, v.APIVersion)
return nil, fmt.Errorf(msg + ". Boost and Lotus Daemon must have the same API version")
return nil, fmt.Errorf("%s. Boost and Lotus Daemon must have the same API version", msg)
}

fmt.Println("Creating boost repo")
Expand Down
Loading