From 845017a82685223877ba9a3d3b6a2f26d7f539fe Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 13:39:18 +0000 Subject: [PATCH] Update actions/checkout action to v5 --- .github/workflows/build-preview.yml | 2 +- .github/workflows/deploy.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-preview.yml b/.github/workflows/build-preview.yml index ad844b4..4a04f8c 100644 --- a/.github/workflows/build-preview.yml +++ b/.github/workflows/build-preview.yml @@ -10,7 +10,7 @@ jobs: name: "Build Preview Site and Upload Build Artifact" steps: - name: "checkout" - uses: "actions/checkout@v4" + uses: "actions/checkout@v5" with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.ref }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ba5d0cb..e6cb850 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,7 +10,7 @@ jobs: name: Build and deploy steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Bun uses: oven-sh/setup-bun@v2 - name: Install frontend dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad3273e..ba0a67b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - uses: oven-sh/setup-bun@v2 - run: bun install - run: cd web && bun run lint