From 522a6765c9c3768e199344d2a26efe6f7e7db33e Mon Sep 17 00:00:00 2001 From: Shulhan Date: Sun, 6 Oct 2024 21:17:53 +0700 Subject: .github/workflows: update Go to v1.23.2 Eventhough the go.mod define go version 1.22.0, the [lib/play] use Go version 1.23.2 for running testing. --- .github/workflows/go.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e25237a1..b7d40393 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,21 +1,21 @@ -name: Go1.21 +name: Go1.23.2 on: [push] jobs: build: name: Build runs-on: ubuntu-latest steps: - - name: Set up Go 1.21 - uses: actions/setup-go@v5 - with: - go-version: '^1.21.7' - id: go + - name: Set up Go 1.23 + uses: actions/setup-go@v5 + with: + go-version: "^1.23.2" + id: go - - name: Check out code into the Go module directory - uses: actions/checkout@v4 + - name: Check out code into the Go module directory + uses: actions/checkout@v4 - - name: Build - run: make build + - name: Build + run: make build - - name: Test - run: make test + - name: Test + run: make test -- cgit v1.3