@@ -83,12 +83,12 @@ 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/{owner}/{repository}/releases", {
86- owner: "slsa-framework ",
86+ owner: "kpk47 ",
8787 repository: "slsa-verifier",
8888 });
8989 for (const release of releases) {
9090 const { data: commit } = yield octokit.request("GET /reps/{owner}/{repository}/git/ref/tags/{tagName}", {
91- owner: "slsa-framework ",
91+ owner: "kpk47 ",
9292 repository: "slsa-verifier",
9393 tagName: release.tag_name,
9494 });
@@ -98,7 +98,7 @@ function getVerifierVersion(actionRef) {
9898 }
9999 }
100100 }
101- throw new Error(`Invalid version provided: ${actionRef}. For the set of valid versions, see https://github.com/slsa-framework /slsa-verifier/releases.`);
101+ throw new Error(`Invalid version provided: ${actionRef}. For the set of valid versions, see https://github.com/kpk47 /slsa-verifier/releases.`);
102102 });
103103}
104104exports.getVerifierVersion = getVerifierVersion;
@@ -132,7 +132,7 @@ function run() {
132132 }
133133 catch (error) {
134134 const errMsg = error instanceof Error ? error.message : String(error);
135- core.setFailed(`Invalid version provided. For the set of valid versions, see https://github.com/slsa-framework /slsa-verifier/releases. ${errMsg}`);
135+ core.setFailed(`Invalid version provided. For the set of valid versions, see https://github.com/kpk47 /slsa-verifier/releases. ${errMsg}`);
136136 cleanup();
137137 return;
138138 }
@@ -142,7 +142,7 @@ function run() {
142142 let bootstrapVerifierPath;
143143 try {
144144 // Download bootstrap version and validate SHA256 checksum
145- bootstrapVerifierPath = yield tc.downloadTool(`https://github.com/slsa-framework /slsa-verifier/releases/download/${BOOTSTRAP_VERSION}/slsa-verifier-linux-amd64`, `${bootstrapDir}/${BINARY_NAME}`);
145+ bootstrapVerifierPath = yield tc.downloadTool(`https://github.com/kpk47 /slsa-verifier/releases/download/${BOOTSTRAP_VERSION}/slsa-verifier-linux-amd64`, `${bootstrapDir}/${BINARY_NAME}`);
146146 }
147147 catch (error) {
148148 const errMsg = error instanceof Error ? error.message : String(error);
@@ -159,7 +159,7 @@ function run() {
159159 let downloadedBinaryPath;
160160 try {
161161 // Download requested version binary and provenance
162- downloadedBinaryPath = yield tc.downloadTool(`https://github.com/slsa-framework /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64`, `${installDir}/${BINARY_NAME}`);
162+ downloadedBinaryPath = yield tc.downloadTool(`https://github.com/kpk47 /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64`, `${installDir}/${BINARY_NAME}`);
163163 }
164164 catch (error) {
165165 const errMsg = error instanceof Error ? error.message : String(error);
@@ -169,7 +169,7 @@ function run() {
169169 }
170170 let downloadedProvenancePath;
171171 try {
172- downloadedProvenancePath = yield tc.downloadTool(`https://github.com/slsa-framework /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64.intoto.jsonl`, `${installDir}/${PROVENANCE_NAME}`);
172+ downloadedProvenancePath = yield tc.downloadTool(`https://github.com/kpk47 /slsa-verifier/releases/download/${version}/slsa-verifier-linux-amd64.intoto.jsonl`, `${installDir}/${PROVENANCE_NAME}`);
173173 }
174174 catch (error) {
175175 const errMsg = error instanceof Error ? error.message : String(error);
@@ -182,7 +182,7 @@ function run() {
182182 const { exitCode, stdout, stderr } = yield exec.getExecOutput(`${bootstrapVerifierPath}`, [
183183 `-artifact-path=${downloadedBinaryPath}`,
184184 `-provenance=${downloadedProvenancePath}`,
185- `-source=github.com/slsa-framework /slsa-verifier`,
185+ `-source=github.com/kpk47 /slsa-verifier`,
186186 `-tag=${version}`,
187187 ]);
188188 if (exitCode !== 0) {
0 commit comments