Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pre-commit-advisory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
run: dotnet tool restore

# Optional: install Node + enable pnpm + install workspace deps.
# setup-node@v4 with cache:pnpm caches the pnpm content-addressable
# setup-node@v6 with cache:pnpm caches the pnpm content-addressable
# store across runs, so `pnpm install --frozen-lockfile` is mostly
# a symlink-create after the first run (5-10s typical).
- name: Enable corepack (pnpm)
Expand Down Expand Up @@ -204,15 +204,15 @@ jobs:
- name: Find existing advisory comment
if: github.event_name == 'pull_request'
id: find
uses: peter-evans/find-comment@v3
uses: peter-evans/find-comment@v4
with:
issue-number: ${{ github.event.pull_request.number }}
comment-author: github-actions[bot]
body-includes: <!-- pre-commit-advisory -->

- name: Post or update PR comment
if: github.event_name == 'pull_request'
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
comment-id: ${{ steps.find.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
Expand Down