1
0
mirror of https://github.com/go-task/task.git synced 2025-04-11 11:41:56 +02:00

chore: update go minimum version to 1.21

This commit is contained in:
Pete Davison 2024-01-09 18:24:20 +00:00 committed by Andrey Nering
parent 8d0754af4d
commit 2c6969d572
3 changed files with 7 additions and 3 deletions

View File

@ -10,11 +10,15 @@ on:
jobs:
lint:
name: Lint
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.21.x
go-version: ${{matrix.go-version}}
- uses: actions/checkout@v3

View File

@ -3,7 +3,7 @@ name: goreleaser
on:
push:
tags:
- '*'
- 'v*'
jobs:
goreleaser:

View File

@ -13,7 +13,7 @@ jobs:
name: Test
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
go-version: [1.21.x, 1.22.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.platform}}
steps: