Skip to content

Commit

Permalink
chore(deps): bump actions/github-script from 6 to 7 (#5633)
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6...v7)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Nov 14, 2023
1 parent 2d40a81 commit 9c2ecd2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/add-triage-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
issues: write
steps:
- name: Run
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
github.rest.issues.addLabels({
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 5

- name: React with Rocket
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
github.rest.reactions.createForIssueComment({
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Extract Benchmark Name
id: extract-benchmark
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const regex = /^\/benchmark\s*(.*?)\s*$/;
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Extract Comment Branch
id: extract-branch
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
async function isPullRequest() {
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
}
- name: Publish Link To Action Run
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
async function getJobUrl() {
Expand All @@ -115,7 +115,7 @@ jobs:


- name: Publish Results
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const fs = require("fs");
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
files: '**/changelog.d/**'

- name: Enforce New File or 'No Changelog Required' Label
uses: actions/github-script@v6
uses: actions/github-script@v7
# don't require changelogs for draft PRs
if: github.event.pull_request.draft == false
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-message-broker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: contains(fromJson('["cancelled", "failure"]'), github.event.workflow_job.status)
steps:
- name: Prepare Slack Message
uses: actions/github-script@v6
uses: actions/github-script@v7
id: prepare-slack-message
with:
script: |
Expand Down

1 comment on commit 9c2ecd2

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Plutus Benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.05.

Benchmark suite Current: 9c2ecd2 Previous: 2d40a81 Ratio
validation-decode-token-account-2 234.8 μs 208 μs 1.13

This comment was automatically generated by workflow using github-action-benchmark.

CC: @input-output-hk/plutus-core

Please sign in to comment.