From 3513dbe502e9ad31079c8a652798abefed385a4e Mon Sep 17 00:00:00 2001 From: rockwellll Date: Fri, 24 Jul 2026 14:06:03 -0300 Subject: [PATCH] Secure checkout credentials in CI --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b93a660..27525f90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,9 @@ jobs: node: ["20", "22"] name: Node ${{ matrix.node }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 + with: + persist-credentials: false - uses: actions/setup-node@v6 with: node-version: ${{ matrix.node }}