diff options
author | Keuin <[email protected]> | 2023-07-11 23:22:26 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2023-07-11 23:22:26 +0800 |
commit | a4222502579fd8d6de9dbfd866a0ad0a800d087c (patch) | |
tree | 55a27bf79e733299a8653860ceae6857e2ae1a1e | |
parent | 2898ef978ee4bde15a970a47bd94b7423815cc4f (diff) |
Bugfix: bump go version to 1.20
-rw-r--r-- | .github/workflows/test.yml | 2 | ||||
-rw-r--r-- | go.mod | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f06242e..2988f47 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [ 1.18.x, 1.19.x ] + go-version: [ 1.20.x ] os: [ ubuntu-latest, macos-latest, windows-latest ] runs-on: ${{ matrix.os }} steps: @@ -1,6 +1,6 @@ module github.com/keuin/slbr -go 1.18 +go 1.20 require ( github.com/akamensky/argparse v1.4.0 |