mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-25 23:51:07 -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
|
- name: Create GitHub Issue for failure
|
||||||
if: failure()
|
if: failure()
|
||||||
uses: actions/github-script@v3.1.0
|
uses: actions/github-script@v4.0.2
|
||||||
id: create-issue
|
id: create-issue
|
||||||
with:
|
with:
|
||||||
# https://octokit.github.io/rest.js/v18#issues-create
|
# https://octokit.github.io/rest.js/v18#issues-create
|
||||||
|
@ -122,7 +122,7 @@ jobs:
|
||||||
# Assign admins on failure #
|
# Assign admins on failure #
|
||||||
############################
|
############################
|
||||||
- name: 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()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
# https://octokit.github.io/rest.js/v18#issues-create
|
# 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 #
|
# Create a GitHub Issue with the info from this build #
|
||||||
#######################################################
|
#######################################################
|
||||||
- name: Update GitHub Issue
|
- name: Update GitHub Issue
|
||||||
uses: actions/github-script@v3.1.0
|
uses: actions/github-script@v4.0.2
|
||||||
id: update-issue
|
id: update-issue
|
||||||
with:
|
with:
|
||||||
# https://octokit.github.io/rest.js/v18#issues-create
|
# 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'"
|
if: "github.event_name == 'issue_comment' && contains(github.event.issue.labels.*.name, 'O: stale 🤖') && github.event.issue.user.type != 'Bot'"
|
||||||
steps:
|
steps:
|
||||||
- name: Mark issue not stale
|
- name: Mark issue not stale
|
||||||
uses: actions/github-script@v3
|
uses: actions/github-script@v4.0.2
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
github.issues.removeLabel({
|
github.issues.removeLabel({
|
||||||
|
|
Loading…
Reference in a new issue