diff options
| author | Eric Biggers <ebiggers@google.com> | 2023-09-09 15:52:08 -0700 |
|---|---|---|
| committer | Eric Biggers <ebiggers@google.com> | 2023-09-09 15:54:30 -0700 |
| commit | 43869584b3c9f9acade09d2d35b20e69623d98f8 (patch) | |
| tree | 88fb13e08bc0cfdcf5d03cea932f006444ca2033 /.github/workflows/ci.yml | |
| parent | 1ecdfe03ac24088be4b13b6119c5246c75d9e6d9 (diff) | |
Bump up required Go version to 1.18
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f66ec0e..1377df2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: build: strategy: matrix: - go: ['1.18', '1.17', '1.16'] + go: ['1.18', '1.19', '1.20'] name: Build (Go ${{ matrix.go }}) runs-on: ubuntu-latest steps: @@ -49,7 +49,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v2 with: - go-version: '1.18' + go-version: '1.20' - name: Install dependencies run: | sudo dpkg --add-architecture i386 @@ -65,7 +65,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v2 with: - go-version: '1.18' + go-version: '1.20' - name: Install dependencies run: | sudo apt-get update @@ -114,7 +114,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v2 with: - go-version: '1.18' + go-version: '1.20' - name: Install dependencies run: | sudo apt-get update @@ -129,7 +129,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v2 with: - go-version: '1.18' + go-version: '1.20' - name: Install dependencies run: | sudo apt-get update |