1
0
mirror of https://github.com/go-task/task.git synced 2025-04-13 11:50:50 +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: jobs:
lint: lint:
name: Lint
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: 1.21.x go-version: ${{matrix.go-version}}
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

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

View File

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