@@ -83,21 +83,21 @@ function getVerifierVersion(actionRef) {
8383 if (shaRe.test(actionRef)) {
8484 const octokit = github.getOctokit(process.env.TOKEN || "");
8585 const { data: releases } = yield octokit.request("GET /repos/{repository_owner}/{repository}/releases", {
86- repository_owner: 'slsa-framework' ,
87- repository: ' slsa-verifier' ,
86+ repository_owner: "kpk47" ,
87+ repository: " slsa-verifier" ,
8888 });
8989 for (const release of releases) {
9090 const { data: commit } = yield octokit.request("GET /reps/{repository_owner}/{repository}/git/ref/tags/{tagName}", {
91- repository_owner: 'slsa-framework' ,
92- repository: ' slsa-verifier' ,
91+ repository_owner: "kpk47" ,
92+ repository: " slsa-verifier" ,
9393 });
9494 const commitSha = commit.object.sha;
9595 if (commitSha === actionRef) {
9696 return release.tag_name;
9797 }
9898 }
9999 }
100- throw new Error(`Invalid version provided: ${actionRef}. For the set of valid versions, see https://github.com/slsa-framework /slsa-verifier/releases.`);
100+ throw new Error(`Invalid version provided: ${actionRef}. For the set of valid versions, see https://github.com/kpk47 /slsa-verifier/releases.`);
101101 });
102102}
103103exports.getVerifierVersion = getVerifierVersion;
@@ -131,7 +131,7 @@ function run() {
131131 }
132132 catch (error) {
133133 const errMsg = error instanceof Error ? error.message : String(error);
134- core.setFailed(`Invalid version provided. For the set of valid versions, see https://github.com/slsa-framework /slsa-verifier/releases. ${errMsg}`);
134+ core.setFailed(`Invalid version provided. For the set of valid versions, see https://github.com/kpk47 /slsa-verifier/releases. ${errMsg}`);
135135 cleanup();
136136 return;
137137 }
@@ -141,7 +141,7 @@ function run() {
141141 let bootstrapVerifierPath;
142142 try {
143143 // Download bootstrap version and validate SHA256 checksum
144- bootstrapVerifierPath = yield tc.downloadTool(`https://github.com/slsa-framework /slsa-verifier/releases/download/${BOOTSTRAP_VERSION}/slsa-verifier-linux-amd64`, `${bootstrapDir}/${BINARY_NAME}`);
144+ bootstrapVerifierPath = yield tc.downloadTool(`https://github.com/kpk47 /slsa-verifier/releases/download/${BOOTSTRAP_VERSION}/slsa-verifier-linux-amd64`, `${bootstrapDir}/${BINARY_NAME}`);
145145 }
146146 catch (error) {
147147 const errMsg = error instanceof Error ? error.message : String(error);
@@ -158,7 +158,7 @@ function run() {
158158 let downloadedBinaryPath;
159159 try {
160160 // Download requested version binary and provenance
161- downloadedBinaryPath = yield tc.downloadTool(`https://github.com/slsa-framework /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64`, `${installDir}/${BINARY_NAME}`);
161+ downloadedBinaryPath = yield tc.downloadTool(`https://github.com/kpk47 /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64`, `${installDir}/${BINARY_NAME}`);
162162 }
163163 catch (error) {
164164 const errMsg = error instanceof Error ? error.message : String(error);
@@ -168,7 +168,7 @@ function run() {
168168 }
169169 let downloadedProvenancePath;
170170 try {
171- downloadedProvenancePath = yield tc.downloadTool(`https://github.com/slsa-framework /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64.intoto.jsonl`, `${installDir}/${PROVENANCE_NAME}`);
171+ downloadedProvenancePath = yield tc.downloadTool(`https://github.com/kpk47 /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64.intoto.jsonl`, `${installDir}/${PROVENANCE_NAME}`);
172172 }
173173 catch (error) {
174174 const errMsg = error instanceof Error ? error.message : String(error);
@@ -181,7 +181,7 @@ function run() {
181181 const { exitCode, stdout, stderr } = yield exec.getExecOutput(`${bootstrapVerifierPath}`, [
182182 `-artifact-path=${downloadedBinaryPath}`,
183183 `-provenance=${downloadedProvenancePath}`,
184- `-source=github.com/slsa-framework /slsa-verifier`,
184+ `-source=github.com/kpk47 /slsa-verifier`,
185185 `-tag=${version}`,
186186 ]);
187187 if (exitCode !== 0) {
0 commit comments