diff options
| author | Shulhan <ms@kilabit.info> | 2024-02-26 00:06:06 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-02-26 00:06:23 +0700 |
| commit | a2c7a97d02d75e0753465e46cb33fb86cb3a6739 (patch) | |
| tree | 926c31b6f2904d6fd2b2e87a1d7864d5d064206e | |
| parent | 2c505626de5b06ee1f6fdf4dd8ac0e8567996db8 (diff) | |
| download | pakakeh.go-a2c7a97d02d75e0753465e46cb33fb86cb3a6739.tar.xz | |
.github: update setup-go to version 5 and Go to minimum supported version
| -rw-r--r-- | .github/workflows/go.yml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 623c54b5..e25237a1 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,20 +1,18 @@ -name: Go1.20 +name: Go1.21 on: [push] jobs: - build: name: Build runs-on: ubuntu-latest steps: - - - name: Set up Go 1.20 - uses: actions/setup-go@v4 + - name: Set up Go 1.21 + uses: actions/setup-go@v5 with: - go-version: '^1.20.8' + go-version: '^1.21.7' id: go - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: make build |
