From 4fe1f5b24ab21087f2573cdf7ed8f30fd85b69ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 10:08:44 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 5 updates Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `5` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `46` | `47` | | [actions/labeler](https://github.com/actions/labeler) | `5` | `6` | | [actions/stale](https://github.com/actions/stale) | `9` | `10` | Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) Updates `tj-actions/changed-files` from 46 to 47 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v46...v47) Updates `actions/labeler` from 5 to 6 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v5...v6) Updates `actions/stale` from 9 to 10 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v9...v10) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: tj-actions/changed-files dependency-version: '47' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/labeler dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ai-pr-comment.yml | 8 ++++---- .github/workflows/continuous-integration.yml | 4 ++-- .github/workflows/gemini-assistant.yml | 2 +- .github/workflows/gemini-comprehensive-analysis.yml | 4 ++-- .github/workflows/issue-management.yml | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ai-pr-comment.yml b/.github/workflows/ai-pr-comment.yml index 38f76be..031cf90 100644 --- a/.github/workflows/ai-pr-comment.yml +++ b/.github/workflows/ai-pr-comment.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Download analysis artifacts - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} with: @@ -82,7 +82,7 @@ jobs: [ -f "pr-data/status.txt" ] && echo "status=$(cat pr-data/status.txt)" >> $GITHUB_OUTPUT - name: Post AI review comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: PR_NUMBER: ${{ steps.extract-data.outputs.pr-number }} HEAD_SHA: ${{ steps.extract-data.outputs.head-sha }} @@ -160,7 +160,7 @@ jobs: steps: - name: Download failure artifacts (if any) - uses: actions/github-script@v7 + uses: actions/github-script@v8 continue-on-error: true env: WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} @@ -207,7 +207,7 @@ jobs: fi - name: Create failure issue - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: PR_NUMBER: ${{ steps.extract-pr.outputs.pr-number }} WORKFLOW_HTML_URL: ${{ github.event.workflow_run.html_url }} diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 5fadd87..fe2cdd3 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -44,7 +44,7 @@ jobs: fi - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: '16' # Use conditional caching based on package-lock.json existence @@ -113,7 +113,7 @@ jobs: fi - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: '16' # Use conditional caching based on package-lock.json existence diff --git a/.github/workflows/gemini-assistant.yml b/.github/workflows/gemini-assistant.yml index ed827f3..4e52a19 100644 --- a/.github/workflows/gemini-assistant.yml +++ b/.github/workflows/gemini-assistant.yml @@ -148,7 +148,7 @@ jobs: " > assistant-response.txt - name: Post AI Assistant Response - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: # SECURITY: Use environment variables for safe handling COMMENT_USER: ${{ github.event.comment.user.login }} diff --git a/.github/workflows/gemini-comprehensive-analysis.yml b/.github/workflows/gemini-comprehensive-analysis.yml index 021ab12..902d0fa 100644 --- a/.github/workflows/gemini-comprehensive-analysis.yml +++ b/.github/workflows/gemini-comprehensive-analysis.yml @@ -32,7 +32,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v46 + uses: tj-actions/changed-files@v47 with: files: | **/*.php @@ -192,7 +192,7 @@ jobs: - name: Create Workflow Summary if: steps.changed-files.outputs.any_changed == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} FILES_COUNT: ${{ steps.changed-files.outputs.all_changed_files_count }} diff --git a/.github/workflows/issue-management.yml b/.github/workflows/issue-management.yml index 6602057..b3a8a94 100644 --- a/.github/workflows/issue-management.yml +++ b/.github/workflows/issue-management.yml @@ -19,12 +19,12 @@ jobs: triage: runs-on: ubuntu-latest steps: - - uses: actions/labeler@v5 + - uses: actions/labeler@v6 with: repo-token: ${{ secrets.GITHUB_TOKEN }} configuration-path: .github/labeler.yml sync-labels: false - - uses: actions/stale@v9 + - uses: actions/stale@v10 with: days-before-stale: 30 days-before-close: 7