From c6207081985947ebd42d377f6b1ebf251157cbd9 Mon Sep 17 00:00:00 2001 From: Gustavo Bazan Date: Fri, 5 May 2023 16:38:14 +0100 Subject: [PATCH] test: update actions to use the new go action values (#468) --- .github/workflows/pr.yml | 7 +++---- GNUmakefile | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d64d699b0..04dbbca97 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -19,7 +19,7 @@ jobs: - name: lint uses: golangci/golangci-lint-action@v3.4.0 with: - version: v1.50.1 + version: v1.52.2 tests-on-unix: needs: golangci-lint # run after golangci-lint action to not produce duplicated errors @@ -27,9 +27,8 @@ jobs: strategy: matrix: golang: - - "1.18" - - "1.19" - - "1.20" + - 'stable' + - 'oldstable' steps: - name: Checkout repository uses: actions/checkout@v3 diff --git a/GNUmakefile b/GNUmakefile index 0a154324c..540ed2433 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,6 +1,6 @@ SOURCE_FILES?=./... PKG_NAME=mongodbatlas -GOLANGCI_VERSION=v1.50.1 +GOLANGCI_VERSION=v1.52.2 COVERAGE=coverage.out export GO111MODULE := on