diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e097540..4cbe7cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.22.5 + go-version: 1.23.2 - name: Install Mage run: go install github.com/magefile/mage @@ -38,7 +38,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.22.5 + go-version: 1.23.2 - name: Install Mage run: go install github.com/magefile/mage diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1819189..b99098f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,7 +51,7 @@ Happy contributing! | Requirement | Tested Version | Installation Instructions | |-------------|----------------|-------------------------------------------------------| -| Go | 1.22.5 | [go.dev](https://go.dev/doc/tutorial/compile-install) | +| Go | 1.23.2 | [go.dev](https://go.dev/doc/tutorial/compile-install) | | Mage | 1.15.0-5 | [magefile.org](https://magefile.org/) | ### Go @@ -62,7 +62,7 @@ You may verify your `go` installation via the terminal: ``` $> go version -go version go1.22.5 darwin/amd64 +go version go1.23.2 darwin/amd64 ``` If you do not have go, we recommend installing it by: @@ -89,7 +89,7 @@ $> mage --version Mage Build Tool v1.15.0-5-g2385abb Build Date: 2024-03-21T12:20:13-07:00 Commit: 2385abb -built with: go1.22.5 +built with: go1.23.2 ``` #### MacOS diff --git a/README.md b/README.md index 9d29db6..cf26522 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![godoc did-dht](https://img.shields.io/badge/godoc-did_dht-blue)](https://github.com/TBD54566975/did-dht/impl) -[![go version 1.22.5](https://img.shields.io/badge/go_version-1.22.5-brightgreen)](https://go.dev/) +[![go version 1.23.2](https://img.shields.io/badge/go_version-1.23.2-brightgreen)](https://go.dev/) [![license Apache 2](https://img.shields.io/badge/license-Apache%202-black)](https://github.com/TBD54566975/did-dht/blob/main/LICENSE) [![issues](https://img.shields.io/github/issues/TBD54566975/did-dht)](https://github.com/TBD54566975/did-dht/issues) ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/TBD54566975/did-dht/ci.yml) diff --git a/impl/build/Dockerfile b/impl/build/Dockerfile index f4077ff..c7d3f17 100644 --- a/impl/build/Dockerfile +++ b/impl/build/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.5-alpine +FROM golang:1.23.2-alpine # Create directory for our app inside the container WORKDIR /app diff --git a/impl/go.mod b/impl/go.mod index e06b617..9e6a1c1 100644 --- a/impl/go.mod +++ b/impl/go.mod @@ -1,8 +1,6 @@ module github.com/TBD54566975/did-dht -go 1.23.0 - -toolchain go1.23.1 +go 1.23.2 require ( github.com/BurntSushi/toml v1.4.0