Skip to content

Commit

Permalink
v1.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-b-iodigital committed Jun 19, 2024
1 parent 762914c commit 6acddb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34509,7 +34509,7 @@ try {
else
{
const found = newGradle.match(versionNameRegexPattern);
versionName = found[2].replace("\"", "");
versionName = found[2].replaceAll("\"", "");
}

if (applicationId.length > 0)
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ try {
else
{
const found = newGradle.match(versionNameRegexPattern);
versionName = found[2].replace("\"", "");
versionName = found[2].replaceAll("\"", "");
}

if (applicationId.length > 0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.11",
"@actions/core": "^1.2.12",
"@actions/github": "^4.0.0"
},
"devDependencies": {
Expand Down

0 comments on commit 6acddb1

Please sign in to comment.