Skip to content

Commit f0a84f3

Browse files
authored
Update CLI version (#240)
1 parent c8a1753 commit f0a84f3

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Diff for: action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: "JFrog"
44
inputs:
55
version:
66
description: "JFrog CLI Version"
7-
default: "2.72.4"
7+
default: "2.72.5"
88
required: false
99
download-repository:
1010
description: "Remote repository in Artifactory pointing to 'https://releases.jfrog.io/artifactory/jfrog-cli'. Use this parameter in case you don't have an Internet access."

Diff for: lib/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ class Utils {
821821
return Utils.getMarkdownHeader() + fileContent + Utils.getMarkdownFooter();
822822
}
823823
static getMarkdownFooter() {
824-
return `\n\n # \n\n ${this.getUsageBadge()} \n\n The above Job Summary was generated by the <a href="https://github.com/marketplace/actions/setup-jfrog-cli"> Setup JFrog CLI GitHub Action </a>`;
824+
return `${this.getUsageBadge()} \n\n # \n\n The above Job Summary was generated by the <a href="https://github.com/marketplace/actions/setup-jfrog-cli"> Setup JFrog CLI GitHub Action </a>`;
825825
}
826826
static getUsageBadge() {
827827
return `![](${process.env.JF_URL}/ui/api/v1/u?s=1&m=1&job_id=${process.env.GITHUB_JOB}&run_id=${process.env.GITHUB_RUN_ID}&git_repo=${process.env.GITHUB_REPOSITORY})`;

Diff for: node_modules/.package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jfrog/setup-jfrog-cli",
3-
"version": "4.5.4",
3+
"version": "4.5.5",
44
"private": true,
55
"description": "Setup JFrog CLI in GitHub Actions",
66
"main": "lib/main.js",

Diff for: src/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ export class Utils {
907907
}
908908

909909
private static getMarkdownFooter() {
910-
return `\n\n # \n\n ${this.getUsageBadge()} \n\n The above Job Summary was generated by the <a href="https://github.com/marketplace/actions/setup-jfrog-cli"> Setup JFrog CLI GitHub Action </a>`;
910+
return `${this.getUsageBadge()} \n\n # \n\n The above Job Summary was generated by the <a href="https://github.com/marketplace/actions/setup-jfrog-cli"> Setup JFrog CLI GitHub Action </a>`;
911911
}
912912

913913
private static getUsageBadge(): string {

0 commit comments

Comments
 (0)