diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 515c467..f6bebee 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.23.1-bullseye +FROM golang:1.23.2-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/dependabot_hack.yml b/.github/workflows/dependabot_hack.yml index c6df47e..8b4ef4c 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.23.1 + - uses: golang/go@go1.23.2 # update the versions in the devcontainer Dockerfile manually, too - uses: golang/tools@gopls/v0 diff --git a/.github/workflows/github_tag_and_release.yml b/.github/workflows/github_tag_and_release.yml index 267919d..5e60b13 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.23.1' + go-version: '1.23.2' - name: Run GoReleaser uses: goreleaser/goreleaser-action@v6 diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 7545c54..4b5855f 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.23.1' + go-version: '1.23.2' - name: Checkout code uses: actions/checkout@v4 - name: Tests diff --git a/.github/workflows/virtual_test.yml b/.github/workflows/virtual_test.yml index 5dba839..de33b2d 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.23.1' + go-version: '1.23.2' - name: Checkout code uses: actions/checkout@v4 - name: Install Hoverfly diff --git a/Dockerfile b/Dockerfile index 7493c91..a290dfc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.1-bullseye AS builder +FROM golang:1.23.2-bullseye AS builder WORKDIR /src COPY . .