Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/cypress-percy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node.js environment
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 22
cache: "npm"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
if: github.event.pull_request.head.repo.full_name == github.repository && github.base_ref == 'main'
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 2

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Lychee Link Checker
uses: lycheeverse/lychee-action@v2.8.0
uses: lycheeverse/lychee-action@v2.9.0
id: lychee
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -34,7 +34,7 @@ jobs:

- name: Notify Slack on Link Check Results
if: always()
uses: slackapi/slack-github-action@v3.0.1
uses: slackapi/slack-github-action@v4.0.0
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/markdown-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run markdownlint
uses: davidanson/markdownlint-cli2-action@v23
uses: davidanson/markdownlint-cli2-action@v24
with:
globs: |
**/*.md
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-explainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: github.event.pull_request.head.repo.full_name == github.repository
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -338,14 +338,14 @@ jobs:

- name: Find existing bot comment
id: find-comment
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: "PR Change Explainer"

- name: Post or update PR comment
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
comment-id: ${{ steps.find-comment.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/purge-unused-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node.js environment
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: 22
cache: "npm"
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Notify Slack - Cleanup PR Created
if: steps.cleanup.outputs.has_unused == 'true'
uses: slackapi/slack-github-action@v3.0.1
uses: slackapi/slack-github-action@v4.0.0
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
Expand All @@ -104,7 +104,7 @@ jobs:

- name: Notify Slack - No Cleanup Needed
if: steps.cleanup.outputs.has_unused == 'false'
uses: slackapi/slack-github-action@v3.0.1
uses: slackapi/slack-github-action@v4.0.0
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
Expand Down
Loading