From 5b2aa1aad1d7db6107918b7c3d79b9f92ab944e2 Mon Sep 17 00:00:00 2001 From: John Gemignani Date: Fri, 3 Jul 2026 08:11:51 -0700 Subject: [PATCH] Fix installcheck fetch-depth parameter to 100 Fix the installcheck.yaml fetch-depth parameter to 100. This release, being rather large, exceeded the original value of 75 (commits) and caused the upgrade test to fail. The new value will resolve this and make it unlikely to become a problem in the future. NOTE: We need to keep releases under this number of commits. modified: .github/workflows/installcheck.yaml --- .github/workflows/installcheck.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/installcheck.yaml b/.github/workflows/installcheck.yaml index aa30ef3d7..b1f78a985 100644 --- a/.github/workflows/installcheck.yaml +++ b/.github/workflows/installcheck.yaml @@ -69,7 +69,7 @@ jobs: - uses: actions/checkout@v3 with: - fetch-depth: 75 + fetch-depth: 100 - name: Build AGE id: build