From 77a4cc8603a4c3fc38411d4af0d7f861d7db939e Mon Sep 17 00:00:00 2001 From: Jason Wilder Date: Fri, 12 Jun 2026 09:03:20 +0000 Subject: [PATCH 1/2] Update the checkout steps in `.github/workflows/ci.yml` to add `persist- --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4f1ea8..562eae9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v6 + with: + persist-credentials: false - name: Set up Go uses: actions/setup-go@v6 @@ -87,6 +89,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v6 + with: + persist-credentials: false - name: Set up Go uses: actions/setup-go@v6 @@ -108,6 +112,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v6 + with: + persist-credentials: false - name: Set up Go uses: actions/setup-go@v6 From b6a27025580413f3f449cd0a2a32e1a3c2792234 Mon Sep 17 00:00:00 2001 From: Jason Wilder Date: Fri, 12 Jun 2026 09:03:28 +0000 Subject: [PATCH 2/2] Update the checkout step in `.github/workflows/codeql.yml` to add `persi --- .github/workflows/codeql.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 461bcd5..0312419 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -21,6 +21,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v6 + with: + persist-credentials: false - name: Set up Go uses: actions/setup-go@v6