Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 17f5040

Browse files
pin debian packages in releaser to bullseye versions (#66)
1 parent 1b6f14d commit 17f5040

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

scripts/install-release-deps.sh

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22

33
set -e
44

5+
# ensure certs, curl and gpg are available before running them to setup the github repo
6+
apt-get update
7+
apt-get -y install \
8+
ca-certificates="20210119" \
9+
curl="7.74.0-1.3+deb11u3" \
10+
gnupg="2.2.27-2+deb11u2" \
11+
lsb-release="11.1.0" \
12+
513
# instructions from https://github.com/cli/cli/blob/trunk/docs/install_linux.md#debian-ubuntu-linux-apt
614
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg
715
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null
816

917
apt-get update
10-
apt-get -y install \
11-
ca-certificates="20211016~20.04.1" \
12-
curl="7.68.0-1ubuntu2.13" \
13-
gnupg="2.2.19-3ubuntu2.2" \
14-
lsb-release="11.1.0ubuntu2" \
15-
gh="2.16.0"
18+
apt-get -y install gh="2.16.1"

0 commit comments

Comments
 (0)