mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-25 07:31:05 -05:00
Bump actions/github-script from 5 to 6 (#2465)
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:
parent
4dd4d1deef
commit
720ba1244f
3 changed files with 5 additions and 5 deletions
4
.github/workflows/deploy-Production.yml
vendored
4
.github/workflows/deploy-Production.yml
vendored
|
@ -262,7 +262,7 @@ jobs:
|
|||
#######################################################
|
||||
- name: Create GitHub Issue for failure
|
||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' && failure() }}
|
||||
uses: actions/github-script@v5
|
||||
uses: actions/github-script@v6
|
||||
id: create-issue
|
||||
with:
|
||||
# https://octokit.github.io/rest.js/v18#issues-create
|
||||
|
@ -281,7 +281,7 @@ jobs:
|
|||
# Deploy was failure, alert admins #
|
||||
####################################
|
||||
- name: Assign Admins on failure
|
||||
uses: actions/github-script@v5
|
||||
uses: actions/github-script@v6
|
||||
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' && failure() }}
|
||||
with:
|
||||
# https://octokit.github.io/rest.js/v18#issues-create
|
||||
|
|
4
.github/workflows/deploy-Release.yml
vendored
4
.github/workflows/deploy-Release.yml
vendored
|
@ -150,7 +150,7 @@ jobs:
|
|||
#######################################################
|
||||
- name: Create GitHub Issue for failure
|
||||
if: failure()
|
||||
uses: actions/github-script@v5
|
||||
uses: actions/github-script@v6
|
||||
id: create-issue
|
||||
with:
|
||||
# https://octokit.github.io/rest.js/v18#issues-create
|
||||
|
@ -169,7 +169,7 @@ jobs:
|
|||
# Assign admins on failure #
|
||||
############################
|
||||
- name: Assign Admins on failure
|
||||
uses: actions/github-script@v5
|
||||
uses: actions/github-script@v6
|
||||
if: failure()
|
||||
with:
|
||||
# https://octokit.github.io/rest.js/v18#issues-create
|
||||
|
|
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
|
@ -52,7 +52,7 @@ jobs:
|
|||
timeout-minutes: 60
|
||||
steps:
|
||||
- name: Mark issue not stale
|
||||
uses: actions/github-script@v5
|
||||
uses: actions/github-script@v6
|
||||
with:
|
||||
script: |
|
||||
github.rest.issues.removeLabel({
|
||||
|
|
Loading…
Reference in a new issue