From cc32b0a81454d4ef03cd2d53875b9000b71ae392 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Thu, 16 Feb 2023 01:26:07 +0100 Subject: [PATCH] ci: update ci Signed-off-by: Valery Piashchynski --- .github/workflows/linters.yml | 6 +++--- .github/workflows/tests.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 3c5b664..2f60afa 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -10,14 +10,14 @@ jobs: - name: Check out code uses: actions/checkout@v3 - - name: Set up Go 1.19 + - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: '1.20' - name: Run linter uses: golangci/golangci-lint-action@v3.4.0 # Action page: with: - version: v1.48 # without patch version + version: v1.51 # without patch version only-new-issues: false # show only new issues if it's a pull request args: --timeout=10m diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 603b4db..fb5d126 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: true matrix: - go: ["1.19"] + go: ["1.20"] os: ["ubuntu-latest", "macos-latest"] steps: - name: Set up Go ${{ matrix.go }}