branch: elpa/git-commit
commit a103d11a8a8b4361cf7d5f45f1ac0156c7870b43
Author: Jonas Bernoulli <jo...@bernoul.li>
Commit: Jonas Bernoulli <jo...@bernoul.li>

    ci: Tell actions/checkout to not persist-credentials
    
    It seems this should be the default as suggested
    at https://github.com/actions/checkout/pull/946.
---
 .github/workflows/test.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 0ef39346b7..b5514c8f55 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -32,26 +32,31 @@ jobs:
       with:
         repository: emacs-compat/compat
         path: compat
+        persist-credentials: false
     - name: Checkout dash
       uses: actions/checkout@v3
       with:
         repository: magnars/dash.el
         path: dash
+        persist-credentials: false
     - name: Checkout transient
       uses: actions/checkout@v3
       with:
         repository: magit/transient
         path: transient
+        persist-credentials: false
     - name: Checkout with-editor
       uses: actions/checkout@v3
       with:
         repository: magit/with-editor
         path: with-editor
+        persist-credentials: false
     - name: Checkout magit
       uses: actions/checkout@v3
       with:
         repository: magit/magit
         path: magit
+        persist-credentials: false
     - name: Build compat
       run: make -C compat compile
     - name: Build magit

Reply via email to