From 9f69abc181945b0c50955cdc813c027e17f6c71c Mon Sep 17 00:00:00 2001 From: Eric Date: Fri, 7 Aug 2026 15:18:45 -0500 Subject: [PATCH] Update actions/checkout step in Website related GitHub workflows (#50810) Changes: - Updated the version of actions/checkout used in website-related GitHub workflows and added `filter: blob:none` to improve the speed of the checkout step. ## Summary by CodeRabbit * **Chores** * Updated automated build and test workflows to use the latest checkout action. * Improved workflow checkout efficiency with blobless repository downloads. * Preserved existing credential and full-history checkout behavior. --- .github/workflows/deploy-fleet-website.yml | 3 ++- .github/workflows/test-website.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-fleet-website.yml b/.github/workflows/deploy-fleet-website.yml index ee6cca78e2..54e889faf5 100644 --- a/.github/workflows/deploy-fleet-website.yml +++ b/.github/workflows/deploy-fleet-website.yml @@ -47,10 +47,11 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: persist-credentials: false fetch-depth: 0 + filter: blob:none # Configure our access credentials for the Heroku CLI - uses: akhileshns/heroku-deploy@e3eb99d45a8e2ec5dca08735e089607befa4bf28 # v3.14.15 diff --git a/.github/workflows/test-website.yml b/.github/workflows/test-website.yml index 9b4f8378cc..84cac96bf8 100644 --- a/.github/workflows/test-website.yml +++ b/.github/workflows/test-website.yml @@ -42,10 +42,11 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: persist-credentials: false fetch-depth: 0 + filter: blob:none # Set the Node.js version - name: Use Node.js ${{ matrix.node-version }}