diff options
| author | Shulhan <ms@kilabit.info> | 2024-10-06 21:17:53 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-10-06 21:17:53 +0700 |
| commit | 522a6765c9c3768e199344d2a26efe6f7e7db33e (patch) | |
| tree | a2474aaa33421edd538393ce8f8dcf277a5a4df5 | |
| parent | 45b111af175b39a428fd33f277b83ca8284fcf2d (diff) | |
| download | pakakeh.go-522a6765c9c3768e199344d2a26efe6f7e7db33e.tar.xz | |
.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.
| -rw-r--r-- | .github/workflows/go.yml | 24 |
1 files 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 |
