Skip to content

Commit d085864

Browse files
Bump actions/github-script from 4.0.2 to 6.4.1 (#92)
* Bump actions/github-script from 4.0.2 to 6.4.1 Bumps [actions/github-script](https://github.com/actions/github-script) from 4.0.2 to 6.4.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v4.0.2...v6.4.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * ci: update octokit endpoint --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Josh Black <[email protected]>
1 parent f547825 commit d085864

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release_canary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ jobs:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747

4848
- name: Output canary version number
49-
uses: actions/github-script@v4.0.2
49+
uses: actions/github-script@v6.4.1
5050
with:
5151
script: |
5252
const package = require(`${process.env.GITHUB_WORKSPACE}/package.json`)
53-
github.repos.createCommitStatus({
53+
github.rest.repos.createCommitStatus({
5454
owner: context.repo.owner,
5555
repo: context.repo.repo,
5656
sha: context.sha,

.github/workflows/release_candidate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ jobs:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545

4646
- name: Output release candidate version number
47-
uses: actions/github-script@v4.0.2
47+
uses: actions/github-script@v6.4.1
4848
with:
4949
script: |
5050
const package = require(`${process.env.GITHUB_WORKSPACE}/package.json`)
51-
github.repos.createCommitStatus({
51+
github.rest.repos.createCommitStatus({
5252
owner: context.repo.owner,
5353
repo: context.repo.repo,
5454
sha: context.sha,

0 commit comments

Comments
 (0)