From a06a134e80e5ff1f6f229ed258b38f6121ee3c22 Mon Sep 17 00:00:00 2001 From: John Boyes Date: Thu, 8 Feb 2024 10:55:41 +0000 Subject: [PATCH] Bump Go minor version everywhere needed --- .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 +- go.mod | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d48b2f54..1c6aa7ec 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.6-bullseye +FROM golang:1.22.0-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 f973a041..8558efd9 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.6' + go-version: '1.22.0' - 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 122d7092..4e90103b 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.6' + go-version: '1.22.0' - name: Checkout code uses: actions/checkout@v4 - name: Tests diff --git a/.github/workflows/virtual_test.yml b/.github/workflows/virtual_test.yml index 3394c333..5861263a 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.6' + go-version: '1.22.0' - name: Checkout code uses: actions/checkout@v4 - name: Install Hoverfly diff --git a/Dockerfile b/Dockerfile index 835a0b40..12d9073c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.6-bullseye AS builder +FROM golang:1.22.0-bullseye AS builder WORKDIR /src COPY . . diff --git a/go.mod b/go.mod index ed46a38a..48d6cb0c 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,7 @@ module github.com/agilepathway/label-checker // major and minor version only - don't specify at patch level (e.g. don't put 1.14.7) -go 1.21 +go 1.22 require ( github.com/shurcooL/githubv4 v0.0.0-20230704064427-599ae7bbf278