From ff00cd2222fdcf246c2e64d2920878dccc92aa70 Mon Sep 17 00:00:00 2001 From: Dmitry Pankratov Date: Mon, 16 Dec 2024 08:53:47 +0100 Subject: [PATCH] persist-credentials: false in the CI --- .github/workflows/rust.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c7fbfcf..273fb60 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -7,6 +7,8 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 + with: + persist-credentials: false - run: git submodule update --init shell: bash - run: ci/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }} @@ -28,6 +30,8 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 + with: + persist-credentials: false - run: git submodule update --init - run: ci/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }} - run: ci/build.bash cargo ${{ matrix.target }} vendor @@ -44,6 +48,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + persist-credentials: false - run: git submodule update --init - run: sudo apt-get update && sudo apt-get install -yqq libqpdf-dev - run: ci/set_rust_version.bash ${{ matrix.channel }} ${{ matrix.target }}