From 83f666541a779254013157d4ac135a0d1c87e16b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 19:42:30 +0000 Subject: [PATCH 1/2] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- .github/workflows/deploy_preview.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5520e32..26e2f4e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,7 +6,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: superfly/flyctl-actions/setup-flyctl@master - run: flyctl deploy --remote-only --depot=false --deploy-retries=5 env: diff --git a/.github/workflows/deploy_preview.yml b/.github/workflows/deploy_preview.yml index 090768a..35298f0 100644 --- a/.github/workflows/deploy_preview.yml +++ b/.github/workflows/deploy_preview.yml @@ -32,7 +32,7 @@ jobs: name: ${{ needs.get-number.outputs.app-name }} url: ${{ steps.deploy.outputs.url }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: repository: ${{ github.event.workflow_run.head_repository.full_name }} ref: ${{ github.event.workflow_run.head_branch }} From 85e0ed669f2b5db1fc480a2eaae33c99b0a76d89 Mon Sep 17 00:00:00 2001 From: Chris Buckley Date: Thu, 18 Jun 2026 22:37:00 +0100 Subject: [PATCH 2/2] Allow unsafe PR checkout in deploy preview workflow --- .github/workflows/deploy_preview.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy_preview.yml b/.github/workflows/deploy_preview.yml index 35298f0..39bbfd6 100644 --- a/.github/workflows/deploy_preview.yml +++ b/.github/workflows/deploy_preview.yml @@ -34,6 +34,7 @@ jobs: steps: - uses: actions/checkout@v7 with: + allow-unsafe-pr-checkout: true repository: ${{ github.event.workflow_run.head_repository.full_name }} ref: ${{ github.event.workflow_run.head_branch }}