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
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 @@ -147,7 +147,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
8 changes: 4 additions & 4 deletions .github/workflows/gemini-code-assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
- name: Get changed files (for push/schedule events)
id: changed-files
if: github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47

Check warning on line 47 in .github/workflows/gemini-code-assistant.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/gemini-code-assistant.yml#L47

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
with:
files: |
**/*.php
Expand Down Expand Up @@ -135,7 +135,7 @@
fi

- name: Setup Node.js for Gemini CLI
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: '20'

Expand Down Expand Up @@ -319,7 +319,7 @@
fi

- name: Post AI Review Comment
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
PR_NUMBER: ${{ steps.context-info.outputs.pr-number }}
HEAD_SHA: ${{ steps.context-info.outputs.head-sha }}
Expand Down Expand Up @@ -425,7 +425,7 @@

- name: Handle Analysis Failure
if: steps.ai-analysis.outputs.analysis-success != 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
PR_NUMBER: ${{ steps.context-info.outputs.pr-number }}
WORKFLOW_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gemini-issue-assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: '20'

Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
echo "*Analysis performed by Gemini AI on $(date)*" >> formatted_response.txt

- name: Comment on Issue
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const fs = require('fs');
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