Skip to content

Commit 4d2ffd8

Browse files
committed
Workaround failure while installing latest PowerShell that requires .NET 8
1 parent 1e0d9c9 commit 4d2ffd8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ jobs:
5151
- name: Setup PowerShell (Ubuntu)
5252
if: matrix.os == 'ubuntu-latest'
5353
run: |
54-
dotnet tool install --global PowerShell
54+
# Temporary version downgrade because .NET 8 is not installed on runner.
55+
dotnet tool install --global PowerShell --version 7.3.10
5556
- name: Find latest PowerShell version (Windows)
5657
if: matrix.os == 'windows-latest'
5758
shell: pwsh

0 commit comments

Comments
 (0)