From 3b14fe71c7b854e48a95b253a9399e05eb169d57 Mon Sep 17 00:00:00 2001 From: Hiroshi Hatake Date: Thu, 1 Feb 2024 10:38:14 +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 8edfd247889..3b501b3d8b1 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