From 3b83a052c951ae2459673c4e2a7a60112a333b39 Mon Sep 17 00:00:00 2001 From: appleboy Date: Fri, 27 Sep 2024 23:53:55 +0800 Subject: [PATCH] build: update Go version support and build configurations - Remove support for Go versions 1.18, 1.19, and 1.20 - Add support for Go version 1.23 - Remove macOS cache configuration for Go builds Signed-off-by: appleboy --- .github/workflows/go.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 946998e..a86145e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -27,12 +27,10 @@ jobs: strategy: matrix: os: [ubuntu-latest] - go: [1.18, 1.19, "1.20", 1.21, 1.22] + go: [1.21, 1.22, 1.23] include: - os: ubuntu-latest go-build: ~/.cache/go-build - - os: macos-latest - go-build: ~/Library/Caches/go-build name: ${{ matrix.os }} @ Go ${{ matrix.go }} runs-on: ${{ matrix.os }} env: