From 0a3f5e4e95c946e58bcab39f51f024ece64677d3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 09:44:39 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v5 --- .github/workflows/pull-request.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 870c151..aefe3e6 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -8,7 +8,7 @@ jobs: lint-go: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: go-version: '1.24' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 466b483..5e217cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: lint: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: go-version: '1.24' @@ -20,7 +20,7 @@ jobs: needs: [ lint ] steps: - name: Check out code 🛒 - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Generate Release Notes 📝 if: github.ref_type == 'tag'