diff options
author | Michael Muré <batolettre@gmail.com> | 2022-07-31 14:42:00 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-07-31 14:47:07 +0200 |
commit | 56966fec5562c3a0e23340d0fbe754626c3beb64 (patch) | |
tree | 9f04b1e1ee362e210e74aaa324d950058ed14bf2 /.github/workflows | |
parent | d179b8b7ec7815ccac73e00f35f5cfbdc4ddbe2e (diff) | |
download | git-bug-56966fec5562c3a0e23340d0fbe754626c3beb64.tar.gz |
build: go 1.18 minimum
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/go.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 27353e90..7846a1d6 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - go-version: [1.16.x] + go-version: [1.18.x] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} @@ -46,7 +46,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: 1.16.x + go-version: 1.18.x - name: Checkout code uses: actions/checkout@v2 |