From 1618a948ecb8e1385e758e1da9c10090e6acae89 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Mar 2022 14:20:24 +0100 Subject: [PATCH] Update actions/checkout action to v3 (#21) Co-authored-by: Renovate Bot --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 035cbaa..2b42764 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: with: go-version: 1.16.0 - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Download dependencies run: go mod download @@ -58,7 +58,7 @@ jobs: with: go-version: 1.16.0 - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Download dependencies run: go mod download diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e3cb116..280f838 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: uses: actions/setup-go@v2 with: { go-version: '1.16' } - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: { fetch-depth: 0 } - name: Run GoReleaser