From b407a49d03bd9bfbdf60484c1f1b7a4cd564f67f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jul 2026 09:14:40 +0000 Subject: [PATCH] chore(deps): bump mshick/add-pr-comment from 1 to 3 Bumps [mshick/add-pr-comment](https://github.com/mshick/add-pr-comment) from 1 to 3. - [Release notes](https://github.com/mshick/add-pr-comment/releases) - [Changelog](https://github.com/mshick/add-pr-comment/blob/main/CHANGELOG.md) - [Commits](https://github.com/mshick/add-pr-comment/compare/v1...v3) --- updated-dependencies: - dependency-name: mshick/add-pr-comment dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/banned_file_changes_pr.yml | 8 ++++---- .github/workflows/license_audit.yml | 2 +- .github/workflows/repolinter.yml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/banned_file_changes_pr.yml b/.github/workflows/banned_file_changes_pr.yml index 26c967352..9ae5ad641 100644 --- a/.github/workflows/banned_file_changes_pr.yml +++ b/.github/workflows/banned_file_changes_pr.yml @@ -31,7 +31,7 @@ jobs: echo 'Changes to files in .github are not allowed.' - name: Comment if .github changed if: contains(steps.files.outputs.all_files_changed, '.github') - uses: mshick/add-pr-comment@v1 + uses: mshick/add-pr-comment@v3 with: message: | :no_entry: **Banned Files Modified** @@ -43,7 +43,7 @@ jobs: echo 'Changes to license_policy.yml are not allowed.' - name: Comment if license_policy.yml changed if: contains(steps.files.outputs.all_files_changed, '"license_policy.yml"') - uses: mshick/add-pr-comment@v1 + uses: mshick/add-pr-comment@v3 with: message: | :no_entry: **Banned Files Modified** @@ -51,7 +51,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Look for changes to repolinter.json if: contains(steps.files.outputs.all_files_changed, '"repolinter.json"') - uses: mshick/add-pr-comment@v1 + uses: mshick/add-pr-comment@v3 with: message: | :no_entry: **Banned Files Modified** @@ -63,7 +63,7 @@ jobs: echo 'Changes to repolinter.json are not allowed.' - name: Look for changes to sonar-project.properties if: contains(steps.files.outputs.all_files_changed, '"sonar-project.properties"') - uses: mshick/add-pr-comment@v1 + uses: mshick/add-pr-comment@v3 with: message: | :no_entry: **Banned Files Modified** diff --git a/.github/workflows/license_audit.yml b/.github/workflows/license_audit.yml index 5a40acbca..a5415925b 100644 --- a/.github/workflows/license_audit.yml +++ b/.github/workflows/license_audit.yml @@ -31,7 +31,7 @@ jobs: run: echo "${{ steps.analysis.outputs.unapproved_licenses }}" - name: Comment if analysis finds unapproved licenses if: steps.analysis.outputs.unapproved_licenses == 'true' - uses: mshick/add-pr-comment@v1 + uses: mshick/add-pr-comment@v3 with: message: | :no_entry: **License Inspection** diff --git a/.github/workflows/repolinter.yml b/.github/workflows/repolinter.yml index 2d23deef2..d7478b152 100644 --- a/.github/workflows/repolinter.yml +++ b/.github/workflows/repolinter.yml @@ -34,7 +34,7 @@ jobs: echo "Errored: ${{ steps.analysis.outputs.errored }}" - name: Comment if analysis finds missing disclaimer if: steps.analysis.outputs.disclaimer_found == 'false' - uses: mshick/add-pr-comment@v1 + uses: mshick/add-pr-comment@v3 with: message: | :no_entry: **FAILURE: Missing Disclaimer** @@ -47,7 +47,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Comment if analysis finds missing readme if: steps.analysis.outputs.readme_file_found == 'false' - uses: mshick/add-pr-comment@v1 + uses: mshick/add-pr-comment@v3 with: message: | :no_entry: **FAILURE: Missing README** @@ -58,7 +58,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Comment if analysis finds missing license if: steps.analysis.outputs.license_file_found == 'false' - uses: mshick/add-pr-comment@v1 + uses: mshick/add-pr-comment@v3 with: message: | :no_entry: **FAILURE: Missing LICENSE** @@ -69,7 +69,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Comment if analysis finds copyright notice missing if: steps.analysis.outputs.copyright_found == 'false' - uses: mshick/add-pr-comment@v1 + uses: mshick/add-pr-comment@v3 with: message: | :warning: **WARNING: Missing Copyright Notice(s)**