diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2023-01-06 20:44:54 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2023-01-06 20:48:03 +0100 |
| commit | a103d11a8a8b4361cf7d5f45f1ac0156c7870b43 (patch) | |
| tree | f3199d68f8e4519a57397cb2bc30b8594458eb6a /.github | |
| parent | 74dbbe2a28628d0d578ad899705d26f3b8567386 (diff) | |
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.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0ef3934..b5514c8 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 |
