This is an automated email from the ASF dual-hosted git repository.
meonkeys pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fineract-chat-archive.git
The following commit(s) were added to refs/heads/main by this push:
new 9f2deb3 improve Verify Commit Signatures workflow
9f2deb3 is described below
commit 9f2deb3f5f3930ed28abd624d9faf8c897797fe6
Author: Adam Monsen <[email protected]>
AuthorDate: Mon Feb 9 13:16:46 2026 -0800
improve Verify Commit Signatures workflow
* use latest checkout action
* use slim image for this simple workflow
* remove redundant Checkout action name
* remove unnecessary chmod (git takes care of the executable bit)
---
.github/workflows/verify-commits.yml | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/verify-commits.yml
b/.github/workflows/verify-commits.yml
index c040c58..913c4ca 100644
--- a/.github/workflows/verify-commits.yml
+++ b/.github/workflows/verify-commits.yml
@@ -27,11 +27,10 @@ permissions:
jobs:
verify-signatures:
name: Verify Commit Signatures
- runs-on: ubuntu-latest
+ runs-on: ubuntu-slim
timeout-minutes: 1
steps:
- - name: Checkout
- uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
fetch-depth: 0
@@ -40,8 +39,7 @@ jobs:
- name: Verify signatures
run: |
- chmod +x scripts/verify-signed-commits.sh
- ./scripts/verify-signed-commits.sh \
+ scripts/verify-signed-commits.sh \
--base-ref origin/${{ github.base_ref }} \
--head-ref ${{ github.sha }} \
--strict