From 117b55eeaf86c53cd374f4c9e63890d7a7c92b4c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 16:41:02 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/qodana.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index b4b93ff..1666fbe 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -13,7 +13,7 @@ jobs: pull-requests: write checks: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2b7a73..ec5c349 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # this is important, otherwise it won't checkout the full tree (i.e. no previous tags) - name: Set up Go diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cb0626a..e337638 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Go uses: actions/setup-go@v6