From 843f4ac5bc69506414dba7eed534fa465f52a1ce Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 10:06:12 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .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 fbf0676..6bd8248 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@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version: '1.25' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c32ed6e..8fe47bf 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@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version: '1.25' @@ -20,7 +20,7 @@ jobs: needs: [ lint ] steps: - name: Check out code 🛒 - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Generate Release Notes 📝 if: github.ref_type == 'tag'