From a5143ad9d398407291c7cc1912ed066826b99f35 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Mon, 14 Nov 2022 16:14:50 -0600 Subject: [PATCH] Use checkout/setup v3 actions --- .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 6c954a3..0b14b51 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -26,10 +26,10 @@ jobs: --health-timeout 5s --health-retries 5 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ env.GO_VERSION }} - run: go mod download @@ -64,10 +64,10 @@ jobs: name: fmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ env.GO_VERSION }} - run: go mod download