Bump actions/github-script from 5 to 6 (#4853)

Bumps [actions/github-script](https://github.com/actions/github-script) from 5 to 6.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/v5...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>
This commit is contained in:
dependabot[bot]
2022-02-15 15:31:06 -08:00
committed by GitHub
parent d114353556
commit 28c5405a01

View File

@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Trigger Success - name: Trigger Success
uses: actions/github-script@v5 uses: actions/github-script@v6
with: with:
script: | script: |
github.rest.issues.createComment({ github.rest.issues.createComment({
@ -34,7 +34,7 @@ jobs:
path: test-results path: test-results
- name: Test success - name: Test success
if: ${{ success() }} if: ${{ success() }}
uses: actions/github-script@v5 uses: actions/github-script@v6
with: with:
script: | script: |
github.rest.issues.createComment({ github.rest.issues.createComment({
@ -45,7 +45,7 @@ jobs:
}) })
- name: Test failure - name: Test failure
if: ${{ failure() }} if: ${{ failure() }}
uses: actions/github-script@v5 uses: actions/github-script@v6
with: with:
script: | script: |
github.rest.issues.createComment({ github.rest.issues.createComment({