From 5400f6ae50439290c6ae37f0caa87475b4fe96b1 Mon Sep 17 00:00:00 2001 From: Dana Bauer Date: Sat, 14 Feb 2026 10:06:06 -0500 Subject: [PATCH 1/2] fix: fetch full git history in CI for accurate last-updated dates --- .github/workflows/production_deploy_documentation.yml | 2 ++ .github/workflows/staging_deploy.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/production_deploy_documentation.yml b/.github/workflows/production_deploy_documentation.yml index b1c4fc43..38806fd0 100644 --- a/.github/workflows/production_deploy_documentation.yml +++ b/.github/workflows/production_deploy_documentation.yml @@ -22,6 +22,8 @@ jobs: steps: - name: Check out the docs repo uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Set up Node.js uses: actions/setup-node@v6 diff --git a/.github/workflows/staging_deploy.yaml b/.github/workflows/staging_deploy.yaml index a72b59b2..0f8d89b6 100644 --- a/.github/workflows/staging_deploy.yaml +++ b/.github/workflows/staging_deploy.yaml @@ -17,6 +17,8 @@ jobs: steps: - name: Check out the main docs repo repository and build. uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Node.js uses: actions/setup-node@v6 From fabfd8977adfaf211102c03b5f5632e89134c113 Mon Sep 17 00:00:00 2001 From: Dana Bauer Date: Sat, 14 Feb 2026 10:07:50 -0500 Subject: [PATCH 2/2] bump actions/checkout from v3 to v4 --- .github/workflows/production_deploy_documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/production_deploy_documentation.yml b/.github/workflows/production_deploy_documentation.yml index 38806fd0..84b6ce3f 100644 --- a/.github/workflows/production_deploy_documentation.yml +++ b/.github/workflows/production_deploy_documentation.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the docs repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0