From e40fdeda8f9f4d79e8c1379eac5fff97305be932 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 10 Aug 2025 12:53:54 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/linters.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 0351d2d..fe84216 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@v4 - 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@v4 - name: golangci-lint uses: docker://reviewdog/action-golangci-lint with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7136e2b..297149d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Release Notary uses: docker://outillage/release-notary env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 394f628..5e7af38 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Test run: | go install github.com/magefile/mage @@ -30,7 +30,7 @@ jobs: with: go-version: 1.24.x - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Tidy check run: | go install github.com/magefile/mage