Skip to content

Commit 1cfde8e

Browse files
committed
fix: pin the apt-fast and nala installers
1 parent 022729d commit 1cfde8e

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

dist/legacy/setup-cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/modern/setup-cpp.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/setup-apt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "setup-apt",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "Setup apt packages and repositories in Debian/Ubuntu-based distributions",
55
"repository": "https://github.com/aminya/setup-cpp",
66
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/setup-apt",

packages/setup-apt/src/apt-fast.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ export async function setupAptFast() {
3535
async function setupAptFastViaInstaller() {
3636
const depP = installAptPack([{ name: "bash" }, { name: "wget" }])
3737

38+
// https://github.com/ilikenwf/apt-fast
3839
const installer = new DownloaderHelper(
39-
"https://git.io/vokNn",
40+
"https://raw.githubusercontent.com/ilikenwf/apt-fast/c2cd0a0420d3f2d647dc82cf749bfd58c4697dac/quick-install.sh",
4041
tmpdir(),
4142
{ fileName: "install-apt-fast.sh" },
4243
)

packages/setup-apt/src/nala.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ export async function setupNala(version?: string) {
6161
}
6262

6363
async function setupNalaViaInstaller() {
64+
// https://gitlab.com/volian/volian-archive
6465
const installer = new DownloaderHelper(
65-
"https://gitlab.com/volian/volian-archive/-/raw/main/install-nala.sh",
66+
"https://gitlab.com/volian/volian-archive/-/raw/1939afc3f80638dca2bbedde74bbd86731703cc8/install-nala.sh",
6667
tmpdir(),
6768
{ fileName: "install-nala.sh" },
6869
)

0 commit comments

Comments
 (0)