Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/validate_bicep.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

# set the bicep binary name based on the OS
if os.name == 'nt':
bicep_bin = 'rad-bicep.exe'
bicep_bin = 'bicep.exe'
home_path = os.environ['USERPROFILE']
else:
bicep_bin = 'rad-bicep'
bicep_bin = 'bicep'
home_path = os.environ['HOME']

# set the default Bicep path based on the runner
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate-bicep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:

- name: Setup and verify bicep CLI
run: |
curl -Lo rad-bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64
chmod +x ./rad-bicep
./rad-bicep --version
curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64
chmod +x ./bicep
./bicep --version

- name: Verify Bicep files
run: python ./.github/scripts/validate_bicep.py
6 changes: 3 additions & 3 deletions samples/dapr/nodeapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 19 additions & 19 deletions samples/demo/client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions samples/demo/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"@types/react-router-dom": "^5.3.3",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-router": "^7.10.1",
"react-router-dom": "^7.10.1",
"react-router": "^7.12.0",
"react-router-dom": "^7.12.0",
"typescript": "^5.9.3",
"web-vitals": "^5.1.0"
},
Expand Down
Loading
Loading