1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00

Drop support for golang 1.18 and 1.19, only support the 2 latest major releases.

This commit is contained in:
Henrik Hautakoski 2023-10-20 18:24:31 +02:00
parent 7cdf2f113d
commit 1356b58b55
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.21
- name: compile
id: compile

View file

@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ["1.18", "1.19", "1.20"]
go-version: ["1.20", "1.21"]
runs-on: ubuntu-latest
name: Test (go v${{ matrix.go-version }})
steps: