From c3f08799dca29bb1c11ccf5e538017fc3fe7b86d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 19:15:06 +0000 Subject: [PATCH] Update actions/checkout action to v7 | datasource | package | from | to | | ----------- | ---------------- | ------ | ------ | | github-tags | actions/checkout | v6.0.3 | v7.0.0 | --- .github/workflows/deploy-site.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml index 5fa0cc9..e490e43 100644 --- a/.github/workflows/deploy-site.yml +++ b/.github/workflows/deploy-site.yml @@ -14,11 +14,11 @@ jobs: steps: - name: Check-out (Production) - uses: actions/checkout@v6 + uses: actions/checkout@v7 if: github.event_name == 'push' - name: Check-out (Staging) - uses: actions/checkout@v6 + uses: actions/checkout@v7 if: github.event_name == 'pull_request_target' with: ref: ${{ github.event.pull_request.head.sha }}