From aa79868e553b0cfe39daacd72f981e8ec892647f Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Tue, 8 Mar 2022 21:13:08 +0100 Subject: [PATCH] chore: update deps --- .github/workflows/checks.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 6817871..2f7dd47 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -21,7 +21,7 @@ jobs: outputs: gomod: ${{ steps.gomod.outputs.matrix }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: gomod run: | matrix=$(find . -type f -name "go.mod" -print0 | xargs -0 -n1 dirname | sort --unique | jq -R -s -c 'split("\n")[:-1]') @@ -38,11 +38,11 @@ jobs: GOFLAGS: -mod=readonly GOPROXY: https://proxy.golang.org steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-go@v2 with: go-version: ${{ env.GO_VERSION }} - - uses: golangci/golangci-lint-action@v2 + - uses: golangci/golangci-lint-action@v3.1.0 with: version: ${{ env.GOLANGCI_LINT_VERSION }} working-directory: ${{ matrix.gomod }} @@ -57,7 +57,7 @@ jobs: GOFLAGS: -mod=readonly GOPROXY: https://proxy.golang.org steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-go@v2 with: go-version: ${{ env.GO_VERSION }}