New versions of toolkit packages (#835)

This commit is contained in:
Thomas Boop
2021-06-07 15:09:34 -04:00
committed by GitHub
parent c5e1af5dc3
commit 243a8bba07
10 changed files with 17 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ Outputs can be set with `setOutput` which makes them available to be mapped into
```js
const myInput = core.getInput('inputName', { required: true });
const myBooleanInput = core.getBooleanInput('booleanInputName', { required: true });
const myMultilineInput = core.getMultiline('multilineInputName', { required: true });
const myMultilineInput = core.getMultilineInput('multilineInputName', { required: true });
core.setOutput('outputKey', 'outputVal');
```

View File

@@ -1,5 +1,8 @@
# @actions/core Releases
### 1.4.0
- [Added the `getMultilineInput` function](https://github.com/actions/toolkit/pull/829)
### 1.3.0
- [Added the trimWhitespace option to getInput](https://github.com/actions/toolkit/pull/802)
- [Added the getBooleanInput function](https://github.com/actions/toolkit/pull/725)

View File

@@ -1,6 +1,6 @@
{
"name": "@actions/core",
"version": "1.3.0",
"version": "1.4.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@actions/core",
"version": "1.3.0",
"version": "1.4.0",
"description": "Actions core lib",
"keywords": [
"github",