From 65b5614f9e811d25bde617f6d96bc5b75fa4cd2b Mon Sep 17 00:00:00 2001 From: Andres Uribe Date: Wed, 12 Jul 2023 08:14:56 -0400 Subject: [PATCH] Upgrade go version for security (#587) --- .github/workflows/ci.yml | 4 ++-- .github/workflows/golangci-lint.yml | 2 +- .github/workflows/integration.yml | 2 +- CONTRIBUTING.md | 4 ++-- README.md | 2 +- build/Dockerfile | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db61fd590..36c337a27 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.20.5 + go-version: 1.20.6 cache: true - name: Install Mage @@ -37,7 +37,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.20.5 + go-version: 1.20.6 cache: true - name: Install mage diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 381beb65e..7785f9a28 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.20.5 + go-version: 1.20.6 cache: true - name: golangci-lint diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index c735bb254..9157f15a2 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.20.5 + go-version: 1.20.6 cache: true - name: Install Mage diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 28a08dccd..bdfaff28b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ When you're ready you may: | Requirement | Tested Version | Installation Instructions | |----------------|----------------|---------------------------------------------------------------------------------------------------| -| Go | 1.20.5 | [go.dev](https://go.dev/doc/install) | +| Go | 1.20.6 | [go.dev](https://go.dev/doc/install) | | Mage | 1.13.0-6 | [magefile.org](https://magefile.org/) | | golangci-lint | 1.52.2 | [golangci-lint.run](https://golangci-lint.run/usage/install/#local-installation) | @@ -24,7 +24,7 @@ You may verify your `go` installation via the terminal: ``` $> go version -go version go1.20.5 darwin/amd64 +go version go1.20.6 darwin/amd64 ``` If you do not have go, we recommend installing it by: diff --git a/README.md b/README.md index 2da868a56..dd8fb24e7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![godoc ssi-service](https://img.shields.io/badge/godoc-ssi--service-blue)](https://github.com/TBD54566975/ssi-service) -[![go version 1.20.5](https://img.shields.io/badge/go_version-1.20.5-brightgreen)](https://go.dev/) +[![go version 1.20.6](https://img.shields.io/badge/go_version-1.20.6-brightgreen)](https://go.dev/) [![license Apache 2](https://img.shields.io/badge/license-Apache%202-black)](https://github.com/TBD54566975/ssi-service/blob/main/LICENSE) [![issues](https://img.shields.io/github/issues/TBD54566975/ssi-service)](https://github.com/TBD54566975/ssi-service/issues) ![push](https://github.com/TBD54566975/ssi-service/workflows/ssi-service-ci/badge.svg?branch=main&event=push) diff --git a/build/Dockerfile b/build/Dockerfile index bea2f4815..087a51192 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.5-alpine +FROM golang:1.20.6-alpine # Create directory for our app inside the container WORKDIR /app