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.
- package/dist/core/api/check-updates.js +1 -1
- package/dist/package.js +1 -1
- package/package.json +1 -1
- package/readme.md +7 -1
|
@@ -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.
|
|
1
|
+
const version = "1.10.1";
|
|
2
2
|
export { version };
|
package/package.json
CHANGED
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 "
|
|
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'
|