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
12 changes: 6 additions & 6 deletions .github/workflows/update-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- name: Get PR branch
id: pr
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const pr = await github.rest.pulls.get({
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
fi

- name: Add reaction to comment
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.reactions.createForIssueComment({
Expand All @@ -100,7 +100,7 @@ jobs:
});

- name: Comment on PR
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.issues.createComment({
Expand All @@ -123,7 +123,7 @@ jobs:
steps:
- name: Get PR branch
id: pr
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const pr = await github.rest.pulls.get({
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
fi

- name: Add reaction to comment
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.reactions.createForIssueComment({
Expand All @@ -216,7 +216,7 @@ jobs:
});

- name: Comment on PR with summary
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const runUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`;
Expand Down
Loading