From a355cdd95f4da3215bfe95a4ddeef56804dee142 Mon Sep 17 00:00:00 2001 From: "brainpink-security-automation[bot]" <318928574+brainpink-security-automation[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 10:49:59 +0000 Subject: [PATCH 1/2] Configure .github/dependabot.yml security automation --- .github/dependabot.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..173fd1b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +version: 2 +updates: + - package-ecosystem: "composer" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + time: "05:00" + timezone: "Europe/Amsterdam" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "automated" + groups: + patch-updates: + applies-to: "version-updates" + update-types: + - "patch" + minor-updates: + applies-to: "version-updates" + update-types: + - "minor" From 87a9a41f65f53971754988aca231003a246b25b3 Mon Sep 17 00:00:00 2001 From: "brainpink-security-automation[bot]" <318928574+brainpink-security-automation[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 10:50:00 +0000 Subject: [PATCH 2/2] Configure .github/workflows/security-ci.yml security automation --- .github/workflows/security-ci.yml | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/security-ci.yml diff --git a/.github/workflows/security-ci.yml b/.github/workflows/security-ci.yml new file mode 100644 index 0000000..94e697d --- /dev/null +++ b/.github/workflows/security-ci.yml @@ -0,0 +1,34 @@ +name: Security CI + +on: + pull_request: + merge_group: + +permissions: + actions: read + contents: read + security-events: write + +jobs: + security: + uses: brainpink/github-workflows/.github/workflows/security-ci.yml@main + permissions: + actions: read + contents: read + security-events: write + with: + php-version: "8.2" + node-version: "22" + secrets: + composer-auth: ${{ secrets.COMPOSER_AUTH }} + + gate: + name: Security CI + if: always() + needs: security + runs-on: ubuntu-latest + steps: + - name: Require the reusable workflow to pass + env: + RESULT: ${{ needs.security.result }} + run: test "$RESULT" = "success"