From 48eb451019ab96fa0c00647c73415ccbdb18d11b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 13:03:07 +0000 Subject: [PATCH] Update actions/checkout action to v5 --- .github/workflows/go.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 9f8796f..df9d1ef 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -5,14 +5,14 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Lint uses: gardenbed/actions/go-lint@main test: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Test id: test uses: gardenbed/actions/go-cover@main @@ -27,7 +27,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 - name: Build Binary run: go build .