TEMP list repo contents before fetching dependencies
diff --git a/.github/workflows/populate-cache.yml b/.github/workflows/populate-cache.yml
index 47d4d30..0f35f97 100644
--- a/.github/workflows/populate-cache.yml
+++ b/.github/workflows/populate-cache.yml
@@ -45,6 +45,10 @@
             !~/.m2/repository/org/apache/ozone
           key: maven-repo-${{ hashFiles('**/pom.xml') }}
 
+      - name: List repo contents
+        run: find ~/.m2/repository -type f | sort | xargs ls -lh
+        continue-on-error: true
+
       - name: Setup Java
         if: steps.restore-cache.outputs.cache-hit != 'true'
         uses: actions/setup-java@v4