Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit d1f50e1

Browse files
committed
build fix attempt
1 parent 7cc8aea commit d1f50e1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,9 @@ jobs:
351351
- uses: actions/checkout@v3
352352
- uses: azure/CLI@v1
353353
with:
354-
inlineScript: az bicep build --file src/deployment/azuredeploy.bicep --stdout > /dev/null
354+
inlineScript: |
355+
az config set bicep.use_binary_from_path=false
356+
az bicep installaz bicep build --file src/deployment/azuredeploy.bicep --stdout > /dev/null
355357
dotnet-fuzzing-tools-linux:
356358
runs-on: ubuntu-20.04
357359
steps:

src/cli/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ cryptography<3.4,>=3.3.2
2424
# PyJWT needs to be pinned to the version used by azure-cli-core
2525
PyJWT>=2.4.0
2626
# install rsa version >=4.7 to fix CVE-2020-25658
27-
rsa>=4.7
27+
rsa>=4.7;
2828
# onefuzztypes version is set during build
2929
onefuzztypes==0.0.0

0 commit comments

Comments
 (0)