From e0bf4ac05da7bcdc88892a6776ab3e1b78bad558 Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Wed, 13 Apr 2022 13:09:48 +0200 Subject: [PATCH] chore: add go 1.18 builds Signed-off-by: Mark Sagi-Kazar --- .github/workflows/ci.yml | 6 +++--- Makefile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4f5fcb..d94f852 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - go: ['1.14', '1.15', '1.16', '1.17'] + go: ['1.14', '1.15', '1.16', '1.17', '1.18'] tags: ['', 'viper_yaml3', 'viper_toml2'] env: GOFLAGS: -mod=readonly @@ -54,6 +54,6 @@ jobs: uses: actions/checkout@v3 - name: Lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3 with: - version: v1.43.0 + version: v1.45.2 diff --git a/Makefile b/Makefile index 1279096..02d3e37 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ TEST_FORMAT = short-verbose endif # Dependency versions -GOTESTSUM_VERSION = 1.7.0 -GOLANGCI_VERSION = 1.43.0 +GOTESTSUM_VERSION = 1.8.0 +GOLANGCI_VERSION = 1.45.2 # Add the ability to override some variables # Use with care