diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-11-15 12:57:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 12:57:54 +0800 |
commit | 64c2c7c40da4bafb6f74076b7ffbffb262246c7a (patch) | |
tree | f02abb031b679f205da21a9da015af8ef5d6ec75 | |
parent | ba58c6f8a44c9c37e97fce1d802dc5b5defceb3d (diff) | |
download | rneovim-64c2c7c40da4bafb6f74076b7ffbffb262246c7a.tar.gz rneovim-64c2c7c40da4bafb6f74076b7ffbffb262246c7a.tar.bz2 rneovim-64c2c7c40da4bafb6f74076b7ffbffb262246c7a.zip |
ci: bump actions/github-script from 6 to 7 (#26041)
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/v6...v7)
---
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>
-rw-r--r-- | .github/workflows/add-reviewers.yml | 2 | ||||
-rw-r--r-- | .github/workflows/issue-open-check.yml | 2 | ||||
-rw-r--r-- | .github/workflows/remove-reviewers.yml | 2 | ||||
-rw-r--r-- | .github/workflows/response.yml | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/add-reviewers.yml b/.github/workflows/add-reviewers.yml index 9b79290008..22c68b6ef7 100644 --- a/.github/workflows/add-reviewers.yml +++ b/.github/workflows/add-reviewers.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: 'Request reviewers' - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const script = require('./.github/scripts/reviews.js') diff --git a/.github/workflows/issue-open-check.yml b/.github/workflows/issue-open-check.yml index aef1a90c38..eac1c2ee4d 100644 --- a/.github/workflows/issue-open-check.yml +++ b/.github/workflows/issue-open-check.yml @@ -12,7 +12,7 @@ jobs: steps: - name: check issue title id: check-issue - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const title = context.payload.issue.title; diff --git a/.github/workflows/remove-reviewers.yml b/.github/workflows/remove-reviewers.yml index bf509b07a8..3fe7493b93 100644 --- a/.github/workflows/remove-reviewers.yml +++ b/.github/workflows/remove-reviewers.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: 'Remove reviewers' - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const script = require('./.github/scripts/remove-reviewers.js') diff --git a/.github/workflows/response.yml b/.github/workflows/response.yml index a8ea88765b..663ae6ad87 100644 --- a/.github/workflows/response.yml +++ b/.github/workflows/response.yml @@ -14,7 +14,7 @@ jobs: pull-requests: write steps: - uses: actions/checkout@v4 - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 with: script: | const script = require('./.github/scripts/close_unresponsive.js') @@ -28,7 +28,7 @@ jobs: pull-requests: write steps: - uses: actions/checkout@v4 - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 with: script: | const script = require('./.github/scripts/remove_response_label.js') |