Skip to content

Commit

Permalink
feat: [ActionYML] drop support for the Node 14.
Browse files Browse the repository at this point in the history
  • Loading branch information
avocadowastaken committed Dec 1, 2021
1 parent 391da83 commit e24b04f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/manifests/ActionYML.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const actionYAMLSchema = z.object({
pre: actionEntrySchema.optional(),
post: actionEntrySchema.optional(),

using: z.enum(["node12", "node14", "node16"]),
using: z.enum(["node12", "node16"]),
}),
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
exports[`invalid-action: stderr 1`] = `
[FAILED] Invalid 'action.yml':
[FAILED] '.runs.main': expected to be in the 'dist' directory, received 'action.js'
[FAILED] '.runs.using': expected "node12" or "node14" or "node16" but received "undefined"
[FAILED] '.runs.using': expected "node12" or "node16" but received "undefined"
`;

exports[`invalid-action: stdout 1`] = `
Expand Down

0 comments on commit e24b04f

Please sign in to comment.