diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b9ddc67..052a67cd 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.2 + go-version: 1.22.3 - 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.2 + go-version: 1.22.3 - name: Install Mage run: go install github.com/magefile/mage diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 63aa9a02..2beeef3a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ This guide is for you. | Requirement | Tested Version | Installation Instructions | |-------------|----------------|-------------------------------------------------------| -| Go | 1.22.2 | [go.dev](https://go.dev/doc/tutorial/compile-install) | +| Go | 1.22.3 | [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.2 darwin/amd64 +go version go1.22.3 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.2 +built with: go1.22.3 ``` #### MacOS diff --git a/README.md b/README.md index 633854d8..5bd89588 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![godoc did-dht-method](https://img.shields.io/badge/godoc-did_dht_method-blue)](https://github.com/TBD54566975/did-dht-method/impl) -[![go version 1.22.2](https://img.shields.io/badge/go_version-1.22.2-brightgreen)](https://go.dev/) +[![go version 1.22.3](https://img.shields.io/badge/go_version-1.22.3-brightgreen)](https://go.dev/) [![license Apache 2](https://img.shields.io/badge/license-Apache%202-black)](https://github.com/TBD54566975/did-dht-method/blob/main/LICENSE) [![issues](https://img.shields.io/github/issues/TBD54566975/did-dht-method)](https://github.com/TBD54566975/did-dht-method/issues) ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/tbd54566975/did-dht-method/ci.yml) diff --git a/impl/build/Dockerfile b/impl/build/Dockerfile index 8b01065e..8f9e3ecb 100644 --- a/impl/build/Dockerfile +++ b/impl/build/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.2-alpine +FROM golang:1.22.3-alpine # Create directory for our app inside the container WORKDIR /app