From bf86987fdf1902bc311ea235acb55278b4dc9509 Mon Sep 17 00:00:00 2001 From: Hiroshi Hatake Date: Thu, 1 Feb 2024 10:43:57 +0900 Subject: [PATCH] workflows: windows: Use concrete option on Invoke-WebRequest Signed-off-by: Hiroshi Hatake --- .github/workflows/call-build-windows.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/call-build-windows.yaml b/.github/workflows/call-build-windows.yaml index 1ced2e51bcd..1bb070c0c82 100644 --- a/.github/workflows/call-build-windows.yaml +++ b/.github/workflows/call-build-windows.yaml @@ -108,7 +108,7 @@ jobs: - name: Get dependencies run: | - Invoke-WebRequest -O winflexbison.zip $env:WINFLEXBISON + Invoke-WebRequest -OutFile winflexbison.zip $env:WINFLEXBISON Expand-Archive winflexbison.zip -Destination C:\WinFlexBison Copy-Item -Path C:\WinFlexBison/win_bison.exe C:\WinFlexBison/bison.exe Copy-Item -Path C:\WinFlexBison/win_flex.exe C:\WinFlexBison/flex.exe