Skip to content

Commit b38de88

Browse files
authored
Upgrade GitHub action versions (#1724)
1 parent 1af3ef3 commit b38de88

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/actions/setup/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ runs:
1212
using: composite
1313
steps:
1414
- name: Install pnpm
15-
uses: pnpm/action-setup@v3
15+
uses: pnpm/action-setup@v4
1616
- name: Install node
17-
uses: actions/setup-node@v4
17+
uses: actions/setup-node@v6
1818
with:
1919
cache: pnpm
2020
node-version: 24.11.1

.github/workflows/ai-codegen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: Create Pull Request
4848
if: steps.changes.outputs.has_changes == 'true'
49-
uses: peter-evans/create-pull-request@v7
49+
uses: peter-evans/create-pull-request@v8
5050
with:
5151
token: ${{ secrets.GITHUB_TOKEN }}
5252
branch: chore/ai-codegen-update

.github/workflows/bundle-comment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
concurrency:
99
group: ${{ github.workflow }}-${{ github.ref }}
1010
cancel-in-progress: true
11-
11+
1212
permissions: {}
1313

1414
jobs:
@@ -22,7 +22,7 @@ jobs:
2222
timeout-minutes: 1
2323
steps:
2424
- name: Download Artifact
25-
uses: actions/download-artifact@v4
25+
uses: actions/download-artifact@v8
2626
with:
2727
run-id: ${{ github.event.workflow_run.id }}
2828
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -49,14 +49,14 @@ jobs:
4949
run: gh pr view --repo "${PR_TARGET_REPO}" "${PR_BRANCH}" --json 'number' --jq '"number=\(.number)"' >> "${GITHUB_OUTPUT}"
5050
- name: Find Comment
5151
id: find-comment
52-
uses: peter-evans/find-comment@v3
52+
uses: peter-evans/find-comment@v4
5353
with:
5454
issue-number: ${{ steps.pr-context.outputs.number }}
5555
comment-author: "github-actions[bot]"
5656
body-includes: <!-- This comment was auto-generated by GitHub Actions to display bundle size statistics -->
5757
- name: Create Comment
5858
id: comment
59-
uses: peter-evans/create-or-update-comment@v4
59+
uses: peter-evans/create-or-update-comment@v5
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6262
BUNDLE_STATS: "${{ steps.stats.outputs.stats }}"

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
steps:
157157
- uses: actions/checkout@v6
158158
- name: Install node
159-
uses: actions/setup-node@v4
159+
uses: actions/setup-node@v6
160160
- name: Generate JSDoc Analysis
161161
shell: bash
162162
run: |

.github/workflows/jsdoc-analysis-comment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
timeout-minutes: 1
2323
steps:
2424
- name: Download Artifact
25-
uses: actions/download-artifact@v4
25+
uses: actions/download-artifact@v8
2626
with:
2727
run-id: ${{ github.event.workflow_run.id }}
2828
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -49,14 +49,14 @@ jobs:
4949
run: gh pr view --repo "${PR_TARGET_REPO}" "${PR_BRANCH}" --json 'number' --jq '"number=\(.number)"' >> "${GITHUB_OUTPUT}"
5050
- name: Find Comment
5151
id: find-comment
52-
uses: peter-evans/find-comment@v3
52+
uses: peter-evans/find-comment@v4
5353
with:
5454
issue-number: ${{ steps.pr-context.outputs.number }}
5555
comment-author: "github-actions[bot]"
5656
body-includes: <!-- JSDoc Analysis PR Report -->
5757
- name: Create Comment
5858
id: comment
59-
uses: peter-evans/create-or-update-comment@v4
59+
uses: peter-evans/create-or-update-comment@v5
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6262
JSDOC_STATS: "${{ steps.stats.outputs.stats }}"

0 commit comments

Comments
 (0)