From 2a179e4ed650ac59866c0521c0791e52b10c7ff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Fri, 16 Dec 2022 15:08:50 +0100 Subject: [PATCH] Test with Go 1.19 --- .github/workflows/ci.yml | 2 +- .github/workflows/lint.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41f83a1..da6c38c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: test: strategy: matrix: - go: [ '1.13', '1.15' ] + go: [ '1.13', '1.15', '1.16', '1.17', '1.18', '1.19' ] os: [ ubuntu-latest, macos-latest, windows-latest ] fail-fast: false diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 826236a..bb478e1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,17 +16,17 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.15 - uses: actions/setup-go@v2 + - name: Set up Go 1.19 + uses: actions/setup-go@v3 with: - go-version: 1.15 + go-version: 1.19 - name: Check out code uses: actions/checkout@v2 - name: Verify dependencies env: - LINT_VERSION: 1.33.0 + LINT_VERSION: 1.50.1 run: | go mod verify go mod download