From 4c4559dcc1835874bfd781b2bf8523e2a1fd4ed4 Mon Sep 17 00:00:00 2001 From: k1LoW Date: Mon, 22 Jan 2024 12:45:38 +0900 Subject: [PATCH] Fix CI --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42f2d01..96296ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,16 +14,19 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - name: Check out source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version-file: go.mod cache: true - name: Run lint - uses: golangci/golangci-lint-action@v2 + uses: reviewdog/action-golangci-lint@v2 + with: + fail_on_error: true + golangci_lint_flags: --timeout=5m - name: Run tests run: make ci