From cd399aba544e01f08047b40a6988365c195d6076 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Fri, 6 Dec 2024 13:37:52 -0500 Subject: [PATCH] ci: use persist-credentials: false throughout We already do this in most of the other Rustls crates, and Zizmor 0.7.0 flags[0] its absence in this repo. [0]: https://woodruffw.github.io/zizmor/audits/#artipacked --- .github/workflows/CI.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0fa8f2e..974d753 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,6 +19,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v3 + with: + persist-credentials: false - name: Install stable toolchain uses: dtolnay/rust-toolchain@stable @@ -39,6 +41,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v3 + with: + persist-credentials: false - name: Install rust toolchain uses: dtolnay/rust-toolchain@master @@ -65,6 +69,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v3 + with: + persist-credentials: false - name: Install stable toolchain uses: dtolnay/rust-toolchain@stable @@ -84,6 +90,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v3 + with: + persist-credentials: false - uses: dtolnay/rust-toolchain@master with: