Skip to content

Commit 5990df6

Browse files
Bump actions/github-script from 6.4.0 to 6.4.1
Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.0 to 6.4.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@98814c5...d7906e4) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0f6c909 commit 5990df6

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/backport.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Extract backport target branch
19-
uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
19+
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
2020
id: target-branch-extractor
2121
with:
2222
result-encoding: string
@@ -30,7 +30,7 @@ jobs:
3030
3131
return target_branch[1];
3232
- name: Post backport started comment to pull request
33-
uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
33+
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
3434
with:
3535
script: |
3636
const backport_start_body = `Started backporting to ${{ steps.target-branch-extractor.outputs.result }}: https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${process.env.GITHUB_RUN_ID}`;

.github/workflows/submit-to-do-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
issues: write
1717

1818
steps:
19-
- uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
19+
- uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
2020
id: check-user
2121
with:
2222
script: |

.github/workflows/track-shipping-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Calculate branch name
18-
uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
18+
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
1919
id: calculate-branch-name
2020
with:
2121
result-encoding: string
@@ -27,7 +27,7 @@ jobs:
2727
return `shipped/v${releaseVersion.groups.major}.${releaseVersion.groups.minor}`;
2828
2929
- name: Create or update shipped branch
30-
uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
30+
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
3131
with:
3232
script: |
3333
const branchName = `${{ steps.calculate-branch-name.outputs.result }}`;

0 commit comments

Comments
 (0)