mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 06:01:05 -05:00
Update actions/github-script requirement to v4.0.2 (#1472)
Updates the requirements on [actions/github-script](https://github.com/actions/github-script) to permit the latest version.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](a3e7071a34
)
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
63caefd599
commit
8ca2e86c18
3 changed files with 4 additions and 4 deletions
4
.github/workflows/deploy-PROD.yml
vendored
4
.github/workflows/deploy-PROD.yml
vendored
|
@ -103,7 +103,7 @@ jobs:
|
|||
#######################################################
|
||||
- name: Create GitHub Issue for failure
|
||||
if: failure()
|
||||
uses: actions/github-script@v3.1.0
|
||||
uses: actions/github-script@v4.0.2
|
||||
id: create-issue
|
||||
with:
|
||||
# https://octokit.github.io/rest.js/v18#issues-create
|
||||
|
@ -122,7 +122,7 @@ jobs:
|
|||
# Assign admins on failure #
|
||||
############################
|
||||
- name: Assign Admins on failure
|
||||
uses: actions/github-script@v3.1.0
|
||||
uses: actions/github-script@v4.0.2
|
||||
if: failure()
|
||||
with:
|
||||
# https://octokit.github.io/rest.js/v18#issues-create
|
||||
|
|
2
.github/workflows/deploy-RELEASE.yml
vendored
2
.github/workflows/deploy-RELEASE.yml
vendored
|
@ -51,7 +51,7 @@ jobs:
|
|||
# Create a GitHub Issue with the info from this build #
|
||||
#######################################################
|
||||
- name: Update GitHub Issue
|
||||
uses: actions/github-script@v3.1.0
|
||||
uses: actions/github-script@v4.0.2
|
||||
id: update-issue
|
||||
with:
|
||||
# https://octokit.github.io/rest.js/v18#issues-create
|
||||
|
|
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
|||
if: "github.event_name == 'issue_comment' && contains(github.event.issue.labels.*.name, 'O: stale 🤖') && github.event.issue.user.type != 'Bot'"
|
||||
steps:
|
||||
- name: Mark issue not stale
|
||||
uses: actions/github-script@v3
|
||||
uses: actions/github-script@v4.0.2
|
||||
with:
|
||||
script: |
|
||||
github.issues.removeLabel({
|
||||
|
|
Loading…
Reference in a new issue