From 0d9f32ee745d90042e1385936be3ac2bf7c8de05 Mon Sep 17 00:00:00 2001 From: Yu Li Date: Tue, 9 Jun 2026 21:03:55 +0000 Subject: [PATCH] Use regular checkout instead of github action checkout v5. --- .github/workflows/run_pathways_tests.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_pathways_tests.yml b/.github/workflows/run_pathways_tests.yml index da038d5ce9..9f0b755106 100644 --- a/.github/workflows/run_pathways_tests.yml +++ b/.github/workflows/run_pathways_tests.yml @@ -72,9 +72,11 @@ jobs: options: ${{ inputs.container_resource_option }} steps: - name: Checkout MaxText - uses: actions/checkout@v5 - with: - ref: ${{ inputs.maxtext_sha }} + run: | + git config --global --add safe.directory /__w/maxtext/maxtext + git clone https://github.com/google/maxtext.git . + git fetch origin ${{ inputs.maxtext_sha }} + git checkout FETCH_HEAD - name: Download the maxtext wheel uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 with: