-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Perl regular expressions for version check (#21)
* Update axios version check Use Perl regular expressions to check semantic versioning other than 0.21.1 `(?!0\\.21\\.1)(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)(?:-((?:0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?` Cf. https://regex101.com/r/vkijKf/1/ * Update Step 3 instructions to reflect axios update * Update minimist version check Use Perl regular expressions to check semantic versioning other than 1.2.5 * Update names of action-check-file steps * Update copyright year in README.md * Commit suggestion in 2-dependabot-alerts.yml any number of WS characters Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com> * Tolerate `[\ \\n\\r\\t]` after `:` See: https://www.json.org/json-en.html * Escape `.` to `\\.` * Negative lookbehind for any patch before `1\\.2\\.[0-5]` `0\\.21\\.[01]` --------- Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>
- Loading branch information
1 parent
bbbadc8
commit 2a1061d
Showing
6 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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