From cf14dced6e08185d35b720812aa0cdf1a7500444 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Mar 2026 13:18:32 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/build-and-deploy.yml | 2 +- .github/workflows/create-linked-release.yml | 2 +- .github/workflows/pr-checks.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 961a887..07d221e 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Check out the repo id: checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Get the version id: get_version diff --git a/.github/workflows/create-linked-release.yml b/.github/workflows/create-linked-release.yml index 2aeed82..65f685c 100644 --- a/.github/workflows/create-linked-release.yml +++ b/.github/workflows/create-linked-release.yml @@ -74,7 +74,7 @@ jobs: - name: Checkout repository code # We need to check out the code to be able to check for existing tags and push new ones. if: steps.validate_tag.outputs.is_valid == 'true' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 29e1c3d..d07290d 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout code id: checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python id: setup-python