From 6824908b71f9005dfc4bac7a63bd0184d44bc003 Mon Sep 17 00:00:00 2001 From: Clivern Date: Thu, 24 Nov 2022 11:32:48 +0100 Subject: [PATCH] fix: use old revive version for now. Ref. https://github.com/mgechev/revive/issues/1068 --- .github/workflows/api.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/api.yml b/.github/workflows/api.yml index 9882f2c7..d59687ae 100644 --- a/.github/workflows/api.yml +++ b/.github/workflows/api.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.18', '1.19', '1.20.4'] + go: ["1.18", "1.18.1", "1.19", "1.20", "1.21", "1.22", "1.23"] name: Go ${{ matrix.go }} run steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 diff --git a/Makefile b/Makefile index c8ec2fcb..563ce420 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ help: Makefile .PHONY: install_revive install_revive: @echo ">> ============= Install Revive ============= <<" - $(go) install github.com/mgechev/revive@latest + $(go) install github.com/mgechev/revive@v1.3.9 ## style: Check code style.