1
0
Fork 0

New versions of toolkit packages (#835)

pull/837/head
Thomas Boop 2021-06-07 15:09:34 -04:00 committed by GitHub
parent c5e1af5dc3
commit 243a8bba07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 ```js
const myInput = core.getInput('inputName', { required: true }); const myInput = core.getInput('inputName', { required: true });
const myBooleanInput = core.getBooleanInput('booleanInputName', { 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'); core.setOutput('outputKey', 'outputVal');
``` ```

View File

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

View File

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

View File

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

View File

@ -1,5 +1,9 @@
# @actions/glob Releases # @actions/glob Releases
### 0.2.0
- [Added the hashFiles function to Glob](https://github.com/actions/toolkit/pull/830)
- [Added an option to filter out directories](https://github.com/actions/toolkit/pull/728)
### 0.1.2 ### 0.1.2
- [Fix bug where files were matched incorrectly](https://github.com/actions/toolkit/pull/805) - [Fix bug where files were matched incorrectly](https://github.com/actions/toolkit/pull/805)

View File

@ -1,6 +1,6 @@
{ {
"name": "@actions/glob", "name": "@actions/glob",
"version": "0.1.2", "version": "0.2.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@actions/glob", "name": "@actions/glob",
"version": "0.1.2", "version": "0.2.0",
"preview": true, "preview": true,
"description": "Actions glob lib", "description": "Actions glob lib",
"keywords": [ "keywords": [

View File

@ -1,5 +1,8 @@
# @actions/io Releases # @actions/io Releases
### 1.1.1
- [Fixed a bug where we incorrectly escaped paths for rmrf](https://github.com/actions/toolkit/pull/828)
### 1.1.0 ### 1.1.0
- Add `findInPath` method to locate all matching executables in the system path - Add `findInPath` method to locate all matching executables in the system path

View File

@ -1,5 +1,5 @@
{ {
"name": "@actions/io", "name": "@actions/io",
"version": "1.1.0", "version": "1.1.1",
"lockfileVersion": 1 "lockfileVersion": 1
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@actions/io", "name": "@actions/io",
"version": "1.1.0", "version": "1.1.1",
"description": "Actions io lib", "description": "Actions io lib",
"keywords": [ "keywords": [
"github", "github",