Skip to content

Commit 6547850

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] <support@github.com>
1 parent 4fb667a commit 6547850

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 }}
@@ -167,7 +167,7 @@ jobs:
167167
168168
steps:
169169
- name: Download failure artifacts (if any)
170-
uses: actions/github-script@v7
170+
uses: actions/github-script@v8
171171
continue-on-error: true
172172
env:
173173
WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }}
@@ -214,7 +214,7 @@ jobs:
214214
fi
215215
216216
- name: Create failure issue
217-
uses: actions/github-script@v7
217+
uses: actions/github-script@v8
218218
env:
219219
PR_NUMBER: ${{ steps.extract-pr.outputs.pr-number }}
220220
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
@@ -160,7 +160,7 @@ jobs:
160160
" > assistant-response.txt
161161
162162
- name: Post AI Assistant Response
163-
uses: actions/github-script@v7
163+
uses: actions/github-script@v8
164164
env:
165165
# SECURITY: Use environment variables for safe handling
166166
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
@@ -217,7 +217,7 @@ jobs:
217217
218218
- name: Create Workflow Summary
219219
if: steps.changed-files.outputs.any_changed == 'true'
220-
uses: actions/github-script@v7
220+
uses: actions/github-script@v8
221221
env:
222222
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
223223
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)