From 202a33692798bfcff8be3ef4af0e48f21516e191 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 Aug 2025 23:45:40 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v5 --- .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..164c5c4 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@v5 - 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@v5 - name: golangci-lint uses: docker://reviewdog/action-golangci-lint with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 597b399..74a87de 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@v5 - name: Release Notary uses: docker://outillage/release-notary env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4dd50ca..a2f7862 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@v5 - name: Tidy check run: | export PATH=${PATH}:`go env GOPATH`/bin