Skip to content

Commit 3718717

Browse files
Bump golang/go from go1.21.5 to 1.21.6 (#422)
* 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](golang/go@go1.21.5...go1.21.6) --- updated-dependencies: - dependency-name: golang/go dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Bump Go minor version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: John Boyes <john@agilepathway.co.uk>
1 parent ffd3a24 commit 3718717

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# When we update the base image version (which we do manually, prompted by Dependabot
77
# notifying us of a new Go version), make sure our new base images is listed at:
88
# https://hub.docker.com/_/golang
9-
FROM golang:1.21.5-bullseye
9+
FROM golang:1.21.6-bullseye
1010

1111
# This Dockerfile adds a non-root user with sudo access. Use the "remoteUser"
1212
# property in devcontainer.json to use it. On Linux, the container user's GID/UIDs

.github/workflows/dependabot_hack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# 4. integration_test.yml
2121
# 5. virtual_test.yml
2222
# 6. the go.mod (if it is a major or minor version change e.g. 1.14 to 1.15)
23-
- uses: golang/go@go1.21.5
23+
- uses: golang/go@go1.21.6
2424

2525
# update the versions in the devcontainer Dockerfile manually, too
2626
- uses: golang/tools@gopls/v0

.github/workflows/github_tag_and_release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
name: Set up Go
4141
uses: actions/setup-go@v5
4242
with:
43-
go-version: '1.21.5'
43+
go-version: '1.21.6'
4444
-
4545
name: Run GoReleaser
4646
uses: goreleaser/goreleaser-action@v5.0.0

.github/workflows/integration_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install Go
1717
uses: actions/setup-go@v5
1818
with:
19-
go-version: '1.21.5'
19+
go-version: '1.21.6'
2020
- name: Checkout code
2121
uses: actions/checkout@v4
2222
- name: Tests

.github/workflows/virtual_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.21.5'
22+
go-version: '1.21.6'
2323
- name: Checkout code
2424
uses: actions/checkout@v4
2525
- name: Install Hoverfly

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21.5-bullseye AS builder
1+
FROM golang:1.21.6-bullseye AS builder
22

33
WORKDIR /src
44
COPY . .

0 commit comments

Comments
 (0)