From d94e55878303c1fc74e9b797f4221237dfce4711 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 10 Nov 2025 23:19:15 -0800 Subject: [PATCH] ci: faster git clone For some reason, some jobs in .github/workflows/validate.yml have "fetch-depth: 0" argument to actions/checkout, meaning "all history for all branches and tags". Obviously this is not needed here. Signed-off-by: Kir Kolyshkin (cherry picked from commit e0b00171eb0f338cf024760019abdd4e7dec690f) Signed-off-by: Kir Kolyshkin --- .github/workflows/validate.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index e8ea8ddc1..7925a82e1 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -166,8 +166,6 @@ jobs: steps: - name: checkout uses: actions/checkout@v5 - with: - fetch-depth: 0 - name: install deps run: | sudo apt -qq update @@ -184,8 +182,6 @@ jobs: steps: - name: checkout uses: actions/checkout@v5 - with: - fetch-depth: 0 - name: check CHANGELOG.md run: make verify-changelog @@ -214,8 +210,6 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v5 - with: - fetch-depth: 0 - name: install bashbrew env: BASEURL: https://github.com/docker-library/bashbrew/releases/download