Fixes AB#3746140 Upgrade Apache HttpCore to 5.4.3 for CVE-2026-54399 #75
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Notify on versions.gradle changes | |
| on: | |
| push: | |
| paths: | |
| - 'gradle/versions.gradle' | |
| branches: | |
| - dev | |
| - 'release/**' | |
| pull_request: | |
| paths: | |
| - 'gradle/versions.gradle' | |
| branches: | |
| - dev | |
| - 'release/**' | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Log changes | |
| run: | | |
| echo "Changes detected in the 'gradle/versions.gradle' file." | |
| - name: Comment on PR | |
| if: github.event_name == 'pull_request' | |
| uses: mshick/add-pr-comment@v2 | |
| with: | |
| message: "⚠️ **Warning:** Changes detected in the 'versions.gradle' file! ⚠️\n\nPlease refer to [this document](https://dev.azure.com/IdentityDivision/IdentityWiki/_wiki/wikis/IdentityWiki.wiki/82085/Adding-or-Updating-Gradle-Dependencies) for more details." |