diff --git a/setup-r/lib/installer.js b/setup-r/lib/installer.js index 5bccdabd5..eb4bace11 100644 --- a/setup-r/lib/installer.js +++ b/setup-r/lib/installer.js @@ -590,11 +590,11 @@ function acquireRtools(version) { function acquireQpdfWindows() { return __awaiter(this, void 0, void 0, function* () { yield core.group("Downloading and installing Ghostscript, qpdf", () => __awaiter(this, void 0, void 0, function* () { - let dlpath = yield tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs/autohotkey.portable.nupkg"); + let dlpath = yield tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs0/autohotkey.portable.nupkg"); yield io.mv(dlpath, path.join(tempDirectory, "autohotkey.portable.nupkg")); - dlpath = yield tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs/Ghostscipt.app.nupkg"); + dlpath = yield tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs0/Ghostscipt.app.nupkg"); yield io.mv(dlpath, path.join(tempDirectory, "Ghostscipt.app.nupkg")); - dlpath = yield tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs/qpdf.nupkg"); + dlpath = yield tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs0/qpdf.nupkg"); yield io.mv(dlpath, path.join(tempDirectory, "qpdf.nupkg")); yield exec.exec("choco", ["install", "autohotkey.portable", "--source", tempDirectory]); yield exec.exec("choco", ["install", "Ghostscript.app", "qpdf", "--source", tempDirectory]); diff --git a/setup-r/src/installer.ts b/setup-r/src/installer.ts index 419317d63..ab4f7649e 100644 --- a/setup-r/src/installer.ts +++ b/setup-r/src/installer.ts @@ -563,11 +563,11 @@ async function acquireRtools(version: IRVersion) { async function acquireQpdfWindows() { await core.group("Downloading and installing Ghostscript, qpdf", async() => { - let dlpath = await tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs/autohotkey.portable.nupkg"); + let dlpath = await tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs0/autohotkey.portable.nupkg"); await io.mv(dlpath, path.join(tempDirectory, "autohotkey.portable.nupkg")); - dlpath = await tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs/Ghostscipt.app.nupkg"); + dlpath = await tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs0/Ghostscipt.app.nupkg"); await io.mv(dlpath, path.join(tempDirectory, "Ghostscipt.app.nupkg")); - dlpath = await tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs/qpdf.nupkg"); + dlpath = await tc.downloadTool("https://github.com/r-lib/actions/releases/download/sysreqs0/qpdf.nupkg"); await io.mv(dlpath, path.join(tempDirectory, "qpdf.nupkg")); await exec.exec( "choco",