From bc911f581dcd6d899db835e3e51602a319f9b316 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 07:49:28 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .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..397adf7 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@v6 - 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@v6 - name: golangci-lint uses: docker://reviewdog/action-golangci-lint with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 597b399..7ea10d8 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@v6 - name: Release Notary uses: docker://outillage/release-notary env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4dd50ca..734b5ac 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@v6 - name: Tidy check run: | export PATH=${PATH}:`go env GOPATH`/bin