diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c26da3a9..e0975407 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.4 + go-version: 1.22.5 - 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.4 + go-version: 1.22.5 - name: Install Mage run: go install github.com/magefile/mage diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9fdbf4c3..d8214fc8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ This guide is for you. | Requirement | Tested Version | Installation Instructions | |-------------|----------------|-------------------------------------------------------| -| Go | 1.22.4 | [go.dev](https://go.dev/doc/tutorial/compile-install) | +| Go | 1.22.5 | [go.dev](https://go.dev/doc/tutorial/compile-install) | | Mage | 1.15.0-5 | [magefile.org](https://magefile.org/) | ### Go @@ -27,7 +27,7 @@ You may verify your `go` installation via the terminal: ``` $> go version -go version go1.22.4 darwin/amd64 +go version go1.22.5 darwin/amd64 ``` If you do not have go, we recommend installing it by: @@ -54,7 +54,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.4 +built with: go1.22.5 ``` #### MacOS diff --git a/README.md b/README.md index 139da963..931080e2 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.4](https://img.shields.io/badge/go_version-1.22.4-brightgreen)](https://go.dev/) +[![go version 1.22.5](https://img.shields.io/badge/go_version-1.22.5-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 5c0efc65..f4077ffe 100644 --- a/impl/build/Dockerfile +++ b/impl/build/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.4-alpine +FROM golang:1.22.5-alpine # Create directory for our app inside the container WORKDIR /app