summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rwxr-xr-xci/docker/indent/prepare.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/ci/docker/indent/prepare.sh b/ci/docker/indent/prepare.sh
index b8c15042c1..a2ca626c62 100755
--- a/ci/docker/indent/prepare.sh
+++ b/ci/docker/indent/prepare.sh
@@ -5,11 +5,12 @@ apt update -yqq
apt install -y gnupg apt-transport-https
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg
mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/
-curl -O https://packages.microsoft.com/config/debian/9/prod.list
+# FIXME: this is bullseye, but image is actually bookworm (testing at the time)
+curl -O https://packages.microsoft.com/config/debian/11/prod.list
mv prod.list /etc/apt/sources.list.d/microsoft-prod.list
chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg
chown root:root /etc/apt/sources.list.d/microsoft-prod.list
apt update -yqq
-apt install -y dotnet-sdk-5.0
+apt install -y dotnet-sdk-7.0
dotnet tool install --global dotnet-format
ln -s ~/.dotnet/tools/dotnet-format /usr/local/bin/dotnet-format