diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfceca3..1840ce8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: image: golang:1.17 steps: - name: clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: build run: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index e7f488d..4051cf7 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index e068955..d26d00e 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -15,7 +15,7 @@ jobs: image: golang:1.17 steps: - name: clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # ensures we fetch tag history for the repository fetch-depth: 0 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bd8171e..598eb06 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: image: golang:1.17 steps: - name: clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # ensures we fetch tag history for the repository fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bfc2b4b..7199ce0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: image: golang:1.17 steps: - name: clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: tags run: | diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index 94d21fc..1e0515d 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -13,7 +13,7 @@ jobs: image: golang:1.17 steps: - name: clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: golangci-lint uses: reviewdog/action-golangci-lint@v2 @@ -30,7 +30,7 @@ jobs: image: golang:1.17 steps: - name: clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: golangci-lint uses: reviewdog/action-golangci-lint@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b2f98b5..f6f20f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: image: golang:1.17 steps: - name: clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: test run: | diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 7ace2e2..6af0449 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -14,7 +14,7 @@ jobs: image: golang:1.17 steps: - name: clone - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: validate run: |