Update Go & deps. version (#102)

This commit is contained in:
Thomas Miceli
2023-09-18 18:17:11 +02:00
committed by GitHub
parent b31d95c7f6
commit c20ed60913
5 changed files with 123 additions and 109 deletions

View File

@ -13,10 +13,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go 1.19
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: "1.20"
- name: Lint
uses: golangci/golangci-lint-action@v3
@ -34,10 +34,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go 1.19
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: "1.20"
- name: Check
run: make go_mod check_changes
@ -47,7 +47,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
go: ["1.19", "1.20"]
go: ["1.20", "1.21"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout