actions-up 1.10.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -51,7 +51,7 @@ async function checkUpdates(n, i, c) {
51
51
  let { publishedAt: r, version: o, sha: u } = d, f = !1;
52
52
  {
53
53
  let e = normalizeVersion(o), n = !!(o && o.trim() !== ""), r = n && /^v?\d+$/u.test(o.trim()), i = semver.valid(e);
54
- f = !n || r || !i;
54
+ f = !n || r || !i || !isSemverLike(o);
55
55
  }
56
56
  if (f) {
57
57
  let r = await l.getAllTags(i, c, 30);
package/dist/package.js CHANGED
@@ -1,2 +1,2 @@
1
- const version = "1.10.0";
1
+ const version = "1.10.1";
2
2
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "actions-up",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "Interactive CLI tool to update GitHub Actions to latest versions with SHA pinning",
5
5
  "keywords": [
6
6
  "github-actions",
package/readme.md CHANGED
@@ -89,6 +89,12 @@ Per-project
89
89
  npm install --save-dev actions-up
90
90
  ```
91
91
 
92
+ Alternatively, you can install Actions Up with [Homebrew](https://brew.sh)
93
+
94
+ ```bash
95
+ brew install actions-up
96
+ ```
97
+
92
98
  ## Usage
93
99
 
94
100
  ### Interactive Mode (Default)
@@ -228,7 +234,7 @@ jobs:
228
234
  # See the raw output above for details.
229
235
  echo "### How to Update"
230
236
  echo ""
231
- echo "You have several options to update these actions:"
237
+ echo "Choose from several ways to update these actions:"
232
238
  echo ""
233
239
  echo "#### Option 1: Automatic Update (Recommended)"
234
240
  echo '```bash'