Skip to content

Commit 513549a

Browse files
Bump the actions group with 5 updates
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `5` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/labeler](https://github.com/actions/labeler) | `5` | `6` | | [actions/stale](https://github.com/actions/stale) | `9` | `10` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) 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/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) 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/checkout dependency-version: '5' 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/github-script dependency-version: '8' 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 65c0989 commit 513549a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fetch-depth: 0
3333

3434
- name: Setup Node.js for Google AI SDK
35-
uses: actions/setup-node@v4
35+
uses: actions/setup-node@v5
3636
with:
3737
node-version: '20'
3838

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