From 7ba28c496167a65e3611a627af3a287156a05bd7 Mon Sep 17 00:00:00 2001 From: Gustavo Stingelin Cardoso Filho Date: Thu, 14 Aug 2025 15:36:10 -0300 Subject: [PATCH] CI: add pgp keys expire check --- .github/workflows/release.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 915869017..5d5d9f6da 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,6 +15,22 @@ env: GO_VERSION: 1.23.12 jobs: + ######################## + # Check release signing keys + ######################## + pgp-key-expiration-check: + name: Check release signing key expirations + runs-on: ubuntu-latest + steps: + - name: Git checkout + uses: actions/checkout@v4 + + - name: Check PGP key expirations + run: scripts/check-pgp-expiry.sh + + ######################## + # Create release + ######################## main: name: Release build runs-on: ubuntu-latest