From 6631ef6f2e43ebd6b56fc83d96ec064e3b8697ab Mon Sep 17 00:00:00 2001 From: ardevd Date: Wed, 3 Jan 2024 22:58:21 +0100 Subject: [PATCH] fix(ci): updated ci config --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4728447..a221f4c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -33,15 +33,15 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: '1.21' # Change this to your desired Go version - name: Install linter - run: go install golang.org/x/lint/golint + run: go mod download golang.org/x/lint - name: Lint Golang code run: golint ./...