Skip to content

Commit 443bda9

Browse files
dependabot[bot]dreamorosi
authored andcommitted
chore(deps): bump actions/github-script from 6.4.1 to 7.0.1 (#1879)
1 parent 83db4ce commit 443bda9

8 files changed

+8
-8
lines changed

Diff for: .github/workflows/label_pr_on_title.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Checkout repository
3333
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3434
- name: "Label PR based on title"
35-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
35+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
3636
env:
3737
PR_NUMBER: ${{ needs.get_pr_details.outputs.prNumber }}
3838
PR_TITLE: ${{ needs.get_pr_details.outputs.prTitle }}

Diff for: .github/workflows/measure-packages-size.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2727
- name: Extract PR details
2828
id: extract_PR_details
29-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
29+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
3030
with:
3131
script: |
3232
const script = require('.github/scripts/get_pr_info.js');

Diff for: .github/workflows/on-merge-to-main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
steps:
5050
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5151
- name: "Label PR related issue for release"
52-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
52+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
5353
env:
5454
PR_NUMBER: ${{ needs.get_pr_details.outputs.prNumber }}
5555
PR_BODY: ${{ needs.get_pr_details.outputs.prBody }}

Diff for: .github/workflows/on_opened_pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: "Debug workflow_run event"
3232
run: echo "${{ github }}"
3333
- name: "Ensure related issue is present"
34-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
34+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
3535
env:
3636
PR_BODY: ${{ needs.get_pr_details.outputs.prBody }}
3737
PR_NUMBER: ${{ needs.get_pr_details.outputs.prNumber }}

Diff for: .github/workflows/post-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fi
3838
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV
3939
- name: Update issues related to release
40-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
40+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
4141
with:
4242
github-token: ${{ secrets.GITHUB_TOKEN }}
4343
script: |

Diff for: .github/workflows/record_pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
1616
- name: "Extract PR details"
17-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
17+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
1818
with:
1919
script: |
2020
const script = require('.github/scripts/save_pr_details.js')

Diff for: .github/workflows/reusable_export_pr_details.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Checkout repository # in case caller workflow doesn't checkout thus failing with file not found
5858
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5959
- name: "Download previously saved PR"
60-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
60+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
6161
env:
6262
WORKFLOW_ID: ${{ inputs.record_pr_workflow_id }}
6363
# For security, we only download artifacts tied to the successful PR recording workflow

Diff for: .github/workflows/run-e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Extract PR details
4242
id: extract_PR_details
4343
if: ${{ inputs.prNumber != '' }}
44-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
44+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
4545
with:
4646
script: |
4747
const script = require('.github/scripts/get_pr_info.js');

0 commit comments

Comments
 (0)