Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-06-02 01:56:08 +0300
committerGitHub <noreply@github.com>2022-06-02 01:56:08 +0300
commit8b5d067abd3a7850d3befbeb25f4769ced63ece1 (patch)
tree2159aaf8a836c8b737440981c72974e6ba02b35f /.github
parenta13c7e25b27beae89465b8c88c117b17c71a3f21 (diff)
[main] (deps): Bump actions/github-script from 3 to 6 (#41986)
Bumps [actions/github-script](https://github.com/actions/github-script) from 3 to 6. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v3...v6) --- 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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/backport.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml
index 7c678953ae..1b4dbde549 100644
--- a/.github/workflows/backport.yml
+++ b/.github/workflows/backport.yml
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Extract backport target branch
- uses: actions/github-script@v3
+ uses: actions/github-script@v6
id: target-branch-extractor
with:
result-encoding: string
@@ -28,7 +28,7 @@ jobs:
return target_branch[1];
- name: Post backport started comment to pull request
- uses: actions/github-script@v3
+ uses: actions/github-script@v6
with:
script: |
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}`;