Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
fix: gh actions does not support sequences as input
Browse files Browse the repository at this point in the history
  • Loading branch information
moliva committed May 10, 2022
1 parent a575f51 commit b9461a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rust-audit-check",
"version": "1.3.0",
"version": "1.3.1",
"private": false,
"description": "Security audit for security vulnerabilities",
"main": "lib/main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ export interface Input {
export function get(): Input {
return {
token: input.getInput('token', { required: true }),
ignore: input.getInputList('ignore', { required: false }),
ignore: input.getInput('ignore', { required: false }).split(/, */g),
};
}

0 comments on commit b9461a8

Please sign in to comment.