Upgrade to the latest version of Octokit#193
Merged
joshmgross merged 3 commits intomainfrom Sep 24, 2021
Merged
Conversation
|
Hello from actions/github-script! (05e1495) |
hashtagchris
approved these changes
Sep 23, 2021
| "@actions/github": "^4.0.0", | ||
| "@actions/glob": "^0.1.2", | ||
| "@actions/github": "^5.0.0", | ||
| "@actions/glob": "^0.2.0", |
There was a problem hiding this comment.
Why didn't we move to 0.2.0 in #192?
Contributor
Author
There was a problem hiding this comment.
I ran npm i @actions/glob to create #192, which I thought would bump minor versions but I think 0.y.z has special meaning in semver so it did not bump to the "latest minor version".
Major version zero (0.y.z) is for initial development. Anything MAY change at any time. The public API SHOULD NOT be considered stable.
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supports #133, #155, #179
This updates the
githubauthenticated Octokit client available in this action to version 5 of the Octokit client. This change allows users to script using the latest released API.Since this is a major version update and includes breaking changes, this will come with a v5 release of this action.
The primary breaking change is that REST methods must use
github.rest.*instead ofgithub.*. I've added a note to the README for this change and updated our examples.