Skip to content

Commit 6acddb1

Browse files
v1.2.12
1 parent 762914c commit 6acddb1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34509,7 +34509,7 @@ try {
3450934509
else
3451034510
{
3451134511
const found = newGradle.match(versionNameRegexPattern);
34512-
versionName = found[2].replace("\"", "");
34512+
versionName = found[2].replaceAll("\"", "");
3451334513
}
3451434514

3451534515
if (applicationId.length > 0)

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ try {
4343
else
4444
{
4545
const found = newGradle.match(versionNameRegexPattern);
46-
versionName = found[2].replace("\"", "");
46+
versionName = found[2].replaceAll("\"", "");
4747
}
4848

4949
if (applicationId.length > 0)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"author": "",
1212
"license": "ISC",
1313
"dependencies": {
14-
"@actions/core": "^1.2.11",
14+
"@actions/core": "^1.2.12",
1515
"@actions/github": "^4.0.0"
1616
},
1717
"devDependencies": {

0 commit comments

Comments
 (0)