From 670e75564d777c381590cbc5bf1403521a6b3142 Mon Sep 17 00:00:00 2001 From: Alex Sharov Date: Sun, 28 Jan 2024 10:28:40 +0700 Subject: [PATCH] linter up (#129) --- .github/workflows/test.yml | 14 +++++++------- Makefile | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1d0cc08..c2bcadc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,12 +5,12 @@ jobs: test: strategy: matrix: - os: [ ubuntu-20.04, macos-11 ] # list of os: https://github.com/actions/virtual-environments + os: [ ubuntu-20.04, macos-13 ] # list of os: https://github.com/actions/virtual-environments runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: go-version: '1.20' @@ -33,11 +33,11 @@ jobs: - name: Install dependencies run: | - choco upgrade mingw -y --no-progress --version 11.2.0.07112021 - choco install cmake -y --no-progress --version 3.23.1 + choco upgrade mingw -y --no-progress --version 13.2.0 + choco install cmake -y --no-progress --version 3.27.8 - - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: go-version: '1.20' diff --git a/Makefile b/Makefile index cf2a1fb..f7630e3 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ lint: lintci-deps: rm -f ./build/bin/golangci-lint - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./build/bin v1.53.2 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./build/bin v1.55.2 clean: cd mdbxdist && make clean