From df0796f57f511b92b54d80557cf3460df69e0e34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 19:34:15 +0000 Subject: [PATCH] Bump actions/checkout in the github-actions group across 1 directory Bumps the github-actions group with 1 update in the / directory: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/check-build.yml | 2 +- .github/workflows/deploy-preview-with-version.yml | 2 +- .github/workflows/deploy-preview.yml | 2 +- .github/workflows/deploy-production.yml | 2 +- .github/workflows/test.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-build.yml b/.github/workflows/check-build.yml index bb721418..0c2590c1 100644 --- a/.github/workflows/check-build.yml +++ b/.github/workflows/check-build.yml @@ -20,7 +20,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install dependencies run: npm ci - name: Build diff --git a/.github/workflows/deploy-preview-with-version.yml b/.github/workflows/deploy-preview-with-version.yml index e23f2c28..ec280252 100644 --- a/.github/workflows/deploy-preview-with-version.yml +++ b/.github/workflows/deploy-preview-with-version.yml @@ -22,7 +22,7 @@ jobs: permissions: checks: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Deploy to Firebase Hosting preview channel id: firebase_hosting_preview uses: ./ diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index f503a020..82ddc587 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -22,7 +22,7 @@ jobs: permissions: checks: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Deploy to Firebase Hosting preview channel id: firebase_hosting_preview uses: ./ diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 9e7686ec..d796ed2f 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -9,7 +9,7 @@ jobs: deploy_website: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 # - run: npm run build - uses: ./ with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b1cdee3..51ff1a09 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install dependencies run: npm ci - name: Check that Prettier was run