Skip to content

Commit c620708

Browse files
authored
test: update actions to use the new go action values (#468)
1 parent e23b01c commit c620708

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,16 @@ jobs:
1919
- name: lint
2020
uses: golangci/[email protected]
2121
with:
22-
version: v1.50.1
22+
version: v1.52.2
2323

2424
tests-on-unix:
2525
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
2929
golang:
30-
- "1.18"
31-
- "1.19"
32-
- "1.20"
30+
- 'stable'
31+
- 'oldstable'
3332
steps:
3433
- name: Checkout repository
3534
uses: actions/checkout@v3

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SOURCE_FILES?=./...
22
PKG_NAME=mongodbatlas
3-
GOLANGCI_VERSION=v1.50.1
3+
GOLANGCI_VERSION=v1.52.2
44
COVERAGE=coverage.out
55

66
export GO111MODULE := on

0 commit comments

Comments
 (0)