diff options
| author | Eric Biggers <ebiggers@google.com> | 2025-11-04 09:54:42 -0800 |
|---|---|---|
| committer | Eric Biggers <ebiggers@google.com> | 2025-11-04 13:39:07 -0800 |
| commit | 46f05811803b231ce107e04bb367beee85bfce83 (patch) | |
| tree | 5f46a118946e4ca1179b44e8e9bb28996d62b7eb /.github/workflows/ci.yml | |
| parent | 827c13689b39814552a3a18449f922b123725b49 (diff) | |
Bump up required Go version to 1.23
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 f363b8b..e1975e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: build: strategy: matrix: - go: ['1.18', '1.19', '1.20'] + go: ['1.23', '1.24', '1.25'] name: Build (Go ${{ matrix.go }}) runs-on: ubuntu-latest steps: @@ -49,7 +49,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v2 with: - go-version: '1.20' + go-version: '1.25' - name: Install dependencies run: | sudo dpkg --add-architecture i386 @@ -65,7 +65,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v2 with: - go-version: '1.20' + go-version: '1.25' - name: Install dependencies run: | sudo apt-get update @@ -113,7 +113,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v2 with: - go-version: '1.20' + go-version: '1.25' - name: Install dependencies run: | sudo apt-get update @@ -128,7 +128,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v2 with: - go-version: '1.20' + go-version: '1.25' - name: Install dependencies run: | sudo apt-get update |