From 6fd41dcd3d8ae2e0b0324254ba6f20634e20fb31 Mon Sep 17 00:00:00 2001
From: Martijn Laarman <Mpdreamz@gmail.com>
Date: Fri, 31 Jan 2025 13:53:57 +0100
Subject: [PATCH] need .net 6 installed for release-notes

---
 .github/workflows/bootstrap/action.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/bootstrap/action.yml b/.github/workflows/bootstrap/action.yml
index bd622df6..07893b37 100644
--- a/.github/workflows/bootstrap/action.yml
+++ b/.github/workflows/bootstrap/action.yml
@@ -13,8 +13,9 @@ runs:
           
     # Install .NET version as mandated by global.json
     - uses: actions/setup-dotnet@v4
-      with:
-        global-json-file: global.json
+      with: |
+        8.0.x
+        6.0.x
 
     # Setup git config
     - uses: elastic/oblt-actions/git/setup@v1