From 8c6c85f80e071efc084152e2778d1d33d365e74e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 18:40:15 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v7 --- .github/workflows/build-and-deploy.yml | 2 +- .github/workflows/check-missing-images.yml | 2 +- .github/workflows/create-linked-release.yml | 2 +- .github/workflows/pr-checks.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 44f7497..493fec8 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Check out the repo id: checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Get the version id: get_version diff --git a/.github/workflows/check-missing-images.yml b/.github/workflows/check-missing-images.yml index a38edc7..3f3c4d3 100644 --- a/.github/workflows/check-missing-images.yml +++ b/.github/workflows/check-missing-images.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/create-linked-release.yml b/.github/workflows/create-linked-release.yml index 2f4ff31..8dfb341 100644 --- a/.github/workflows/create-linked-release.yml +++ b/.github/workflows/create-linked-release.yml @@ -63,7 +63,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@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 6f00f92..db57a9d 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout code id: checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python id: setup-python