Skip to content

Commit

Permalink
Merge branch 'main' into fix/dont-cache-invalid-parties-response
Browse files Browse the repository at this point in the history
  • Loading branch information
elsand authored Sep 25, 2024
2 parents 29e9074 + 4b8cd92 commit 7ee6bcc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .azure/modules/virtualMachine/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ type StorageProfile = {
version: string
}
osDisk: {
osType: string
osType: 'Linux' | 'Windows' | null
name: string
createOption: string
caching: string
caching: 'None' | 'ReadOnly' | 'ReadWrite' | null
managedDisk: {
storageAccountType: string
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/action-check-for-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# fetch-depth needs to be 0 in cases where we want to fetch changes since previous tag for example
fetch-depth: 0

- uses: tj-actions/changed-files@v44
- uses: tj-actions/changed-files@v45
id: filter
with:
files_yaml: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="Markdig.Signed" Version="0.37.0"/>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0"/>
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.9.2"/>
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.10.0"/>
<PackageReference Include="Npgsql" Version="8.0.4"/>
<PackageReference Include="MediatR" Version="12.4.1"/>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.4"/>
Expand Down

0 comments on commit 7ee6bcc

Please sign in to comment.