Skip to content

Commit db8ec9b

Browse files
Bump the actions group across 1 directory with 4 updates
Bumps the actions group with 4 updates in the / directory: [actions/github-script](https://github.com/actions/github-script), [actions/setup-node](https://github.com/actions/setup-node), [actions/labeler](https://github.com/actions/labeler) and [actions/stale](https://github.com/actions/stale). Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v5) Updates `actions/labeler` from 5 to 6 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](actions/labeler@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](actions/stale@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: 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] <[email protected]>
1 parent aeb99da commit db8ec9b

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ai-pr-comment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
2525
steps:
2626
- name: Download analysis artifacts
27-
uses: actions/github-script@v7
27+
uses: actions/github-script@v8
2828
env:
2929
WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }}
3030
with:
@@ -82,7 +82,7 @@ jobs:
8282
[ -f "pr-data/status.txt" ] && echo "status=$(cat pr-data/status.txt)" >> $GITHUB_OUTPUT
8383
8484
- name: Post AI review comment
85-
uses: actions/github-script@v7
85+
uses: actions/github-script@v8
8686
env:
8787
PR_NUMBER: ${{ steps.extract-data.outputs.pr-number }}
8888
HEAD_SHA: ${{ steps.extract-data.outputs.head-sha }}
@@ -160,7 +160,7 @@ jobs:
160160
161161
steps:
162162
- name: Download failure artifacts (if any)
163-
uses: actions/github-script@v7
163+
uses: actions/github-script@v8
164164
continue-on-error: true
165165
env:
166166
WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }}
@@ -207,7 +207,7 @@ jobs:
207207
fi
208208
209209
- name: Create failure issue
210-
uses: actions/github-script@v7
210+
uses: actions/github-script@v8
211211
env:
212212
PR_NUMBER: ${{ steps.extract-pr.outputs.pr-number }}
213213
WORKFLOW_HTML_URL: ${{ github.event.workflow_run.html_url }}

.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-assistant.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
" > assistant-response.txt
149149
150150
- name: Post AI Assistant Response
151-
uses: actions/github-script@v7
151+
uses: actions/github-script@v8
152152
env:
153153
# SECURITY: Use environment variables for safe handling
154154
COMMENT_USER: ${{ github.event.comment.user.login }}

.github/workflows/gemini-comprehensive-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ jobs:
192192
193193
- name: Create Workflow Summary
194194
if: steps.changed-files.outputs.any_changed == 'true'
195-
uses: actions/github-script@v7
195+
uses: actions/github-script@v8
196196
env:
197197
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
198198
FILES_COUNT: ${{ steps.changed-files.outputs.all_changed_files_count }}

.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)