From 0250d7183f908b8edb3086205ee214f198f065d7 Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Tue, 12 Apr 2022 15:20:53 +0300 Subject: [PATCH] update CI --- .github/workflows/ci.yml | 9 ++++----- .golangci.yml | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b026dc..7c36b28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,20 +20,19 @@ jobs: steps: - name: Check out code into the Go module directory uses: actions/checkout@v2 - - name: Set up latest Go 1.x version + - name: Set up Go 1.17 uses: actions/setup-go@v2 with: - go-version: '^1' + go-version: '1.17' - name: Get dependencies run: | go mod tidy cp .env.dist .env - name: Lint code with golangci-lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3 with: - version: v1.39 + version: v1.45.2 only-new-issues: true - skip-go-installation: true skip-pkg-cache: true tests: name: Tests diff --git a/.golangci.yml b/.golangci.yml index c9b3570..c73d891 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -32,7 +32,7 @@ linters: - gocyclo - godot - goimports - - golint + - revive - gomnd - gosec - ifshort