Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ai-pr-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gemini-assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gemini-comprehensive-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading