From 826f13eb7b6c5cabb8ceb6fa92bcb2460d19913f Mon Sep 17 00:00:00 2001 From: Thomas Bella Date: Tue, 13 Aug 2024 19:02:56 +0000 Subject: [PATCH] Add Go 1.23 and remove Go 1.20 --- .github/workflows/build-docker-image.yml | 8 ++++---- README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 0e67704..93c104c 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -8,23 +8,23 @@ on: - cron: '5 0 */15 * *' workflow_dispatch: -# Build docker image for golang latest, 1.21, 1.20 +# Build docker image for golang latest, 1.23, 1.22, 1.21 jobs: build: runs-on: ubuntu-latest strategy: matrix: - GO_VERSION: ["alpine", "1.22-alpine", "1.21-alpine", "1.20-alpine"] + GO_VERSION: ["alpine", "1.23-alpine", "1.22-alpine", "1.21-alpine"] include: - GO_VERSION: "alpine" output_image: "thomas2500/golang-helper:latest" + - GO_VERSION: "1.23-alpine" + output_image: "thomas2500/golang-helper:1.23" - GO_VERSION: "1.22-alpine" output_image: "thomas2500/golang-helper:1.22" - GO_VERSION: "1.21-alpine" output_image: "thomas2500/golang-helper:1.21" - - GO_VERSION: "1.20-alpine" - output_image: "thomas2500/golang-helper:1.20" name: Build golang-helper Image steps: - name: Checkout code diff --git a/README.md b/README.md index aac92bc..9c7973b 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ This image is available on [Docker Hub](https://hub.docker.com/r/thomas2500/gola The following tags are available: - **latest** - latest Go version + - **1.23** - Go 1.23.X - **1.22** - Go 1.22.X - **1.21** - Go 1.21.X - - **1.20** - Go 1.20.X This replository only keeps supported versions of Go.