From 0e7f26b92261a62791bc43623d7835c83a1839c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 04:11:28 +0000 Subject: [PATCH 1/2] Bump golang/go from go1.21.5 to 1.21.6 Bumps [golang/go](https://github.com/golang/go) from go1.21.5 to 1.21.6. This release includes the previously tagged commit. - [Commits](https://github.com/golang/go/compare/go1.21.5...go1.21.6) --- updated-dependencies: - dependency-name: golang/go dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/dependabot_hack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot_hack.yml b/.github/workflows/dependabot_hack.yml index 6eee161d..aeaa85ee 100644 --- a/.github/workflows/dependabot_hack.yml +++ b/.github/workflows/dependabot_hack.yml @@ -20,7 +20,7 @@ jobs: # 4. integration_test.yml # 5. virtual_test.yml # 6. the go.mod (if it is a major or minor version change e.g. 1.14 to 1.15) - - uses: golang/go@go1.21.5 + - uses: golang/go@go1.21.6 # update the versions in the devcontainer Dockerfile manually, too - uses: golang/tools@gopls/v0 From af5cfae2023435dd743eaf4a949752a986fd4937 Mon Sep 17 00:00:00 2001 From: John Boyes Date: Wed, 24 Jan 2024 05:13:09 +0000 Subject: [PATCH 2/2] Bump Go minor version --- .devcontainer/Dockerfile | 2 +- .github/workflows/github_tag_and_release.yml | 2 +- .github/workflows/integration_test.yml | 2 +- .github/workflows/virtual_test.yml | 2 +- Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 39c024cd..d48b2f54 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -6,7 +6,7 @@ # When we update the base image version (which we do manually, prompted by Dependabot # notifying us of a new Go version), make sure our new base images is listed at: # https://hub.docker.com/_/golang -FROM golang:1.21.5-bullseye +FROM golang:1.21.6-bullseye # This Dockerfile adds a non-root user with sudo access. Use the "remoteUser" # property in devcontainer.json to use it. On Linux, the container user's GID/UIDs diff --git a/.github/workflows/github_tag_and_release.yml b/.github/workflows/github_tag_and_release.yml index c8bf36f7..f973a041 100644 --- a/.github/workflows/github_tag_and_release.yml +++ b/.github/workflows/github_tag_and_release.yml @@ -40,7 +40,7 @@ jobs: name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.21.5' + go-version: '1.21.6' - name: Run GoReleaser uses: goreleaser/goreleaser-action@v5.0.0 diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 7a269514..122d7092 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -16,7 +16,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.21.5' + go-version: '1.21.6' - name: Checkout code uses: actions/checkout@v4 - name: Tests diff --git a/.github/workflows/virtual_test.yml b/.github/workflows/virtual_test.yml index ba700f98..3394c333 100644 --- a/.github/workflows/virtual_test.yml +++ b/.github/workflows/virtual_test.yml @@ -19,7 +19,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.21.5' + go-version: '1.21.6' - name: Checkout code uses: actions/checkout@v4 - name: Install Hoverfly diff --git a/Dockerfile b/Dockerfile index c802864e..835a0b40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.5-bullseye AS builder +FROM golang:1.21.6-bullseye AS builder WORKDIR /src COPY . .