Skip to content

Commit 18a8bd5

Browse files
authored
Merge pull request #86 from EngineScript/dependabot/github_actions/actions-4024c31581
Bump the actions group with 6 updates
2 parents 2cb768d + f1a1fb6 commit 18a8bd5

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fi
4545
4646
- name: Setup Node.js
47-
uses: actions/setup-node@v4
47+
uses: actions/setup-node@v5
4848
with:
4949
node-version: '16'
5050
# Use conditional caching based on package-lock.json existence
@@ -113,7 +113,7 @@ jobs:
113113
fi
114114
115115
- name: Setup Node.js
116-
uses: actions/setup-node@v4
116+
uses: actions/setup-node@v5
117117
with:
118118
node-version: '16'
119119
# Use conditional caching based on package-lock.json existence

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Get changed files (for push/schedule events)
4545
id: changed-files
4646
if: github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
47-
uses: tj-actions/changed-files@v46
47+
uses: tj-actions/changed-files@v47
4848
with:
4949
files: |
5050
**/*.php
@@ -135,7 +135,7 @@ jobs:
135135
fi
136136
137137
- name: Setup Node.js for Gemini CLI
138-
uses: actions/setup-node@v4
138+
uses: actions/setup-node@v5
139139
with:
140140
node-version: '20'
141141

@@ -319,7 +319,7 @@ jobs:
319319
fi
320320
321321
- name: Post AI Review Comment
322-
uses: actions/github-script@v7
322+
uses: actions/github-script@v8
323323
env:
324324
PR_NUMBER: ${{ steps.context-info.outputs.pr-number }}
325325
HEAD_SHA: ${{ steps.context-info.outputs.head-sha }}
@@ -425,7 +425,7 @@ jobs:
425425
426426
- name: Handle Analysis Failure
427427
if: steps.ai-analysis.outputs.analysis-success != 'true'
428-
uses: actions/github-script@v7
428+
uses: actions/github-script@v8
429429
env:
430430
PR_NUMBER: ${{ steps.context-info.outputs.pr-number }}
431431
WORKFLOW_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

.github/workflows/gemini-issue-assistant.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323

2424
- name: Set up Node.js
25-
uses: actions/setup-node@v4
25+
uses: actions/setup-node@v5
2626
with:
2727
node-version: '20'
2828

@@ -169,7 +169,7 @@ jobs:
169169
echo "*Analysis performed by Gemini AI on $(date)*" >> formatted_response.txt
170170
171171
- name: Comment on Issue
172-
uses: actions/github-script@v7
172+
uses: actions/github-script@v8
173173
with:
174174
script: |
175175
const fs = require('fs');

.github/workflows/issue-management.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
triage:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/labeler@v5
22+
- uses: actions/labeler@v6
2323
with:
2424
repo-token: ${{ secrets.GITHUB_TOKEN }}
2525
configuration-path: .github/labeler.yml
2626
sync-labels: false
27-
- uses: actions/stale@v9
27+
- uses: actions/stale@v10
2828
with:
2929
days-before-stale: 30
3030
days-before-close: 7

0 commit comments

Comments
 (0)