@@ -81,9 +81,9 @@ function getVerifierVersion(actionRef) {
8181 // If actionRef is a commit SHA, then find the associated version number.
8282 const shaRe = /^[a-f\d]{40}$/;
8383 if (shaRe.test(actionRef)) {
84- const octokit = github.getOctokit(core.getInput(' github-token' ));
84+ const octokit = github.getOctokit(core.getInput(" github-token" ));
8585 const { data: tags } = yield octokit.request("GET /repos/{owner}/{repository}/tags", {
86- owner: "slsa-framework ",
86+ owner: "kpk47 ",
8787 repository: "slsa-verifier",
8888 });
8989 for (const tag of tags) {
@@ -154,7 +154,7 @@ function run() {
154154 let downloadedBinaryPath;
155155 try {
156156 // Download requested version binary and provenance
157- downloadedBinaryPath = yield tc.downloadTool(`https://github.com/slsa-framework /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64`, `${installDir}/${BINARY_NAME}`);
157+ downloadedBinaryPath = yield tc.downloadTool(`https://github.com/kpk47 /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64`, `${installDir}/${BINARY_NAME}`);
158158 }
159159 catch (error) {
160160 const errMsg = error instanceof Error ? error.message : String(error);
@@ -164,7 +164,7 @@ function run() {
164164 }
165165 let downloadedProvenancePath;
166166 try {
167- downloadedProvenancePath = yield tc.downloadTool(`https://github.com/slsa-framework /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64.intoto.jsonl`, `${installDir}/${PROVENANCE_NAME}`);
167+ downloadedProvenancePath = yield tc.downloadTool(`https://github.com/kpk47 /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64.intoto.jsonl`, `${installDir}/${PROVENANCE_NAME}`);
168168 }
169169 catch (error) {
170170 const errMsg = error instanceof Error ? error.message : String(error);
@@ -177,7 +177,7 @@ function run() {
177177 const { exitCode, stdout, stderr } = yield exec.getExecOutput(`${bootstrapVerifierPath}`, [
178178 `-artifact-path=${downloadedBinaryPath}`,
179179 `-provenance=${downloadedProvenancePath}`,
180- `-source=github.com/slsa-framework /slsa-verifier`,
180+ `-source=github.com/kpk47 /slsa-verifier`,
181181 `-tag=${version}`,
182182 ]);
183183 if (exitCode !== 0) {
0 commit comments