Skip to content

Commit

Permalink
Bump Go version everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
johnboyes authored Oct 22, 2023
1 parent 33af8c4 commit 97c84df
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.1-bullseye
FROM golang:1.21.3-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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github_tag_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.1'
go-version: '1.21.3'
-
name: Run GoReleaser
uses: goreleaser/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.21.1'
go-version: '1.21.3'
- name: Checkout code
uses: actions/checkout@v4
- name: Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/virtual_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.21.1'
go-version: '1.21.3'
- name: Checkout code
uses: actions/checkout@v4
- name: Install Hoverfly
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.1-bullseye AS builder
FROM golang:1.21.3-bullseye AS builder

WORKDIR /src
COPY . .
Expand Down

0 comments on commit 97c84df

Please sign in to comment.