From 8d34ba3d61e0e2ea608866f0738060967447fc2e Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Thu, 2 Jul 2026 21:28:50 +0300 Subject: T9044: disable credential persistence on CI checkout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build-only job; set persist-credentials: false so the git token is not left in .git/config for later steps (per zizmor / CodeRabbit). 🤖 Generated by [robots](https://vyos.io) --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4173811..8a8537a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + # Build-only job; do not leave the git token in .git/config for + # later steps (e.g. the git-pinned vyos1x-config install). + persist-credentials: false - name: Set up OCaml ${{ matrix.ocaml-compiler }} uses: ocaml/setup-ocaml@v3 -- cgit v1.2.3