Skip to content

Commit 7be9d11

Browse files
Bump golang/go from go1.22.6 to 1.23.0 (#469)
* Bump golang/go from go1.22.6 to 1.23.0 Bumps [golang/go](https://github.com/golang/go) from go1.22.6 to 1.23.0. This release includes the previously tagged commit. - [Commits](golang/go@go1.22.6...go1.23.0) --- updated-dependencies: - dependency-name: golang/go dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Bump Go version everywhere needed --------- 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 c078eea commit 7be9d11

7 files changed

+7
-7
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.22.6-bullseye
9+
FROM golang:1.23.0-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.22.6
23+
- uses: golang/go@go1.23.0
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.22.6'
43+
go-version: '1.23.0'
4444
-
4545
name: Run GoReleaser
4646
uses: goreleaser/goreleaser-action@v6

.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.22.6'
19+
go-version: '1.23.0'
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.22.6'
22+
go-version: '1.23.0'
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.22.6-bullseye AS builder
1+
FROM golang:1.23.0-bullseye AS builder
22

33
WORKDIR /src
44
COPY . .

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module github.com/agilepathway/label-checker
22

33
// major and minor version only - don't specify at patch level (e.g. don't put 1.14.7)
4-
go 1.22
4+
go 1.23
55

66
require (
77
github.com/shurcooL/githubv4 v0.0.0-20230704064427-599ae7bbf278

0 commit comments

Comments
 (0)