From 9bc9a6ccd1527b3567e84c510955be1d3b303d32 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 25 Nov 2025 19:11:03 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/ci.yml | 2 +- .github/workflows/prettier.yml | 2 +- .github/workflows/validate.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 067351bb..80e24614 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: lts/* diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 9f3f0a31..43d824b9 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -20,7 +20,7 @@ jobs: # workflow_dispatch always lets you select the branch ref, even though in this case we only ever want to run the action on `main` this we need an if check if: ${{ github.ref_name == 'main' }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: lts/* diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 9989f4e8..95dd293e 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -5,6 +5,6 @@ jobs: validate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Validate Sanity Template uses: sanity-io/template-validator@v2