From ed0516b19a3f54cd7c8b554b59353f48e17d8f05 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 7 Mar 2022 09:46:01 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v3 --- .github/workflows/linters.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 0351d2d..023906a 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v3 - name: Commitsar check uses: docker://outillage/commitsar golangci-lint: @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v3 - name: golangci-lint uses: docker://reviewdog/action-golangci-lint with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 597b399..0579219 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: name: Generate Release Notes steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v3 - name: Release Notary uses: docker://outillage/release-notary env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4dd50ca..4fb6e7e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: with: go-version: 1.14.x - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v3 - name: Tidy check run: | export PATH=${PATH}:`go env GOPATH`/bin