Skip to content

Commit cba1a2f

Browse files
committed
ci: update Go workflow to support latest versions only
- Remove Go version 1.18 and 1.19 from the workflow - Update the Go versions to only include 1.20, 1.21, and 1.22 - Delete macOS job configuration and go-build cache path Signed-off-by: Bo-Yi Wu <[email protected]>
1 parent 1af2b37 commit cba1a2f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/go.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,10 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [ubuntu-latest]
30-
go: [1.18, 1.19, "1.20", 1.21, 1.22]
30+
go: ["1.20", 1.21, 1.22]
3131
include:
3232
- os: ubuntu-latest
3333
go-build: ~/.cache/go-build
34-
- os: macos-latest
35-
go-build: ~/Library/Caches/go-build
3634
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
3735
runs-on: ${{ matrix.os }}
3836
env:

0 commit comments

Comments
 (0)