From 73ec3399a942b1dda604d17138f7cacf547356de Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 15:30:50 +0000 Subject: [PATCH] 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 cf1d334..53ab6ee 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -10,7 +10,7 @@ jobs: permissions: contents: read 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'