From 974c9ddc1dd2fbb437550ca1ea968f9af6833204 Mon Sep 17 00:00:00 2001 From: Brendan Winter Date: Mon, 9 Oct 2023 14:58:23 -0700 Subject: [PATCH] Upgrade github actions. Signed-off-by: Brendan Winter --- .github/workflows/go.yml | 2 +- .github/workflows/golangci-lint.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9b03d85..abb8914 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -17,7 +17,7 @@ jobs: matrix: go: [ "1.19.x", "1.20.x", "1.21.x" ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index f145572..8a62962 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -13,7 +13,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -21,7 +21,7 @@ jobs: uses: golangci/golangci-lint-action@v3 with: # Required: the version of golangci-lint is required and must be specified without a patch version: # we always use the latest patch version. - version: v1.52 + version: v1.54 # Optional: if set to `true` then the all caching functionality will be complete disabled, # takes precedence over all other caching options. skip-cache: true