From ebbd773b2777bcf8f9f89f2d28b6abe0aa68c0d4 Mon Sep 17 00:00:00 2001 From: pavlov346346-source Date: Tue, 8 Sep 2026 16:37:01 +0300 Subject: [PATCH] Run v17.7.1 password security patch --- .../patch-v1771-password-security.yml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/patch-v1771-password-security.yml diff --git a/.github/workflows/patch-v1771-password-security.yml b/.github/workflows/patch-v1771-password-security.yml new file mode 100644 index 0000000..6c147bf --- /dev/null +++ b/.github/workflows/patch-v1771-password-security.yml @@ -0,0 +1,30 @@ +name: Apply Caterium v17.7.1 password security + +on: + push: + branches: + - feature/v17.7.1-password-security + paths: + - .github/workflows/patch-v1771-password-security.yml + +permissions: + contents: write + +jobs: + patch: + if: github.actor != 'github-actions[bot]' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 22 + - name: Apply release patch + run: node .github/scripts/patch-v1771-password-security.mjs + - name: Commit release patch + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add public package.json package-lock.json docs tests + git commit -m "Caterium v17.7.1 password security" || exit 0 + git push