From: Tatsuki Ito Date: Mon, 18 Aug 2025 10:56:17 +0000 (+0900) Subject: Remove unnecessary fetch-depth in GitHub Actions workflow X-Git-Tag: openssl-3.6.0-alpha1~88 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=141ad51b46424cca5df825840ac02581eeaaddc5;p=thirdparty%2Fopenssl.git Remove unnecessary fetch-depth in GitHub Actions workflow Fixes #28107 The build_quic_interop_container.yml workflow does not need the full git history. Removing fetch-depth: 0 reduces unnecessary checkout. CLA: trivial Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28299) --- diff --git a/.github/workflows/build_quic_interop_container.yml b/.github/workflows/build_quic_interop_container.yml index 30fd99bb349..559daefcce1 100644 --- a/.github/workflows/build_quic_interop_container.yml +++ b/.github/workflows/build_quic_interop_container.yml @@ -11,8 +11,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: "log in to quay.io" run: | docker login -u openssl-ci+machine -p ${{ secrets.QUAY_IO_PASSWORD }} quay.io