Browse Source
ci: uci/update-go (#2937)
* chore: bump go.mod to Go 1.22 and run go fix
* Bump docker builder version
---------
Co-authored-by: Marco Munizaga <git@marcopolo.io>
pull/2261/merge
web3-bot
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with
8 additions and
8 deletions
-
examples/go.mod
-
examples/ipfs-camp-2019/go.mod
-
examples/pubsub/basic-chat-with-rendezvous/go.mod
-
examples/pubsub/chat/go.mod
-
go.mod
-
scripts/test_analysis/go.mod
-
test-plans/PingDockerfile
-
test-plans/go.mod
|
|
@ -1,6 +1,6 @@ |
|
|
|
module github.com/libp2p/go-libp2p/examples |
|
|
|
|
|
|
|
go 1.21 |
|
|
|
go 1.22 |
|
|
|
|
|
|
|
require ( |
|
|
|
github.com/gogo/protobuf v1.3.2 |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
module github.com/libp2p/go-libp2p/examples/ipfs-camp-2019 |
|
|
|
|
|
|
|
go 1.21 |
|
|
|
go 1.22 |
|
|
|
|
|
|
|
require ( |
|
|
|
github.com/gogo/protobuf v1.3.2 |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
module github.com/libp2p/go-libp2p/examples/pubsub/chat |
|
|
|
|
|
|
|
go 1.21 |
|
|
|
go 1.22 |
|
|
|
|
|
|
|
require ( |
|
|
|
github.com/libp2p/go-libp2p v0.33.0 |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
module github.com/libp2p/go-libp2p/examples/pubsub/chat |
|
|
|
|
|
|
|
go 1.21 |
|
|
|
go 1.22 |
|
|
|
|
|
|
|
require ( |
|
|
|
github.com/gdamore/tcell/v2 v2.5.2 |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
module github.com/libp2p/go-libp2p |
|
|
|
|
|
|
|
go 1.21 |
|
|
|
go 1.22 |
|
|
|
|
|
|
|
retract v0.26.1 // Tag was applied incorrectly due to a bug in the release workflow. |
|
|
|
|
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
module github.com/libp2p/go-libp2p/scripts/test_analysis |
|
|
|
|
|
|
|
go 1.22.1 |
|
|
|
go 1.22 |
|
|
|
|
|
|
|
require github.com/glebarez/go-sqlite v1.22.0 |
|
|
|
|
|
|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
# syntax=docker/dockerfile:1 |
|
|
|
# This is run from the parent directory to copy the whole go-libp2p codebase |
|
|
|
|
|
|
|
FROM golang:1.21-alpine AS builder |
|
|
|
FROM golang:1.23-alpine AS builder |
|
|
|
|
|
|
|
WORKDIR /app/ |
|
|
|
|
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
module github.com/libp2p/go-libp2p/test-plans/m/v2 |
|
|
|
|
|
|
|
go 1.21 |
|
|
|
go 1.22 |
|
|
|
|
|
|
|
require ( |
|
|
|
github.com/go-redis/redis/v8 v8.11.5 |
|
|
|