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 <kolyshkin@gmail.com>
(cherry picked from commit e0b00171eb0f338cf024760019abdd4e7dec690f)
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2025-11-10 23:19:15 -08:00
committed by lfbzhm
parent 33b9a2c2fb
commit d94e558783
-6
View File
@@ -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