From b58a11f9f1b0ba7c181ce08c4839505967c119e6 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Tue, 2 Sep 2025 18:57:25 +0700 Subject: [PATCH] ci: Remove fetch-depth from checkout (#2628) --- .github/workflows/build_pull_request.yml | 2 -- .github/workflows/release.yml | 2 -- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/build_pull_request.yml b/.github/workflows/build_pull_request.yml index c28a17f1..b11d37dc 100644 --- a/.github/workflows/build_pull_request.yml +++ b/.github/workflows/build_pull_request.yml @@ -13,8 +13,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: Cache Gradle uses: burrunan/gradle-cache-action@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f5d3463c..91f3cc37 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,8 +18,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: Setup Java uses: actions/setup-java@v4