Skip to content

Commit

Permalink
Merge pull request #32 from Lombiq/issue/INFRA-149
Browse files Browse the repository at this point in the history
INFRA-149: Pinning Az PS modules to version 10.4.1
  • Loading branch information
Piedone authored Nov 20, 2023
2 parents 21d6b5a + 918b4a9 commit c57449e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/initialize/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@ runs:
- name: Install and Import Modules
shell: pwsh
run: |
Install-Module Az.Storage -AllowClobber -Force
Install-Module Az.Sql -AllowClobber -Force
Install-Module Az.Websites -AllowClobber -Force
Install-Module SqlServer -AllowClobber -Force
Install-Module Az -RequiredVersion 10.4.1 -AllowClobber -Force
Install-Module SqlServer -RequiredVersion 22.1.1 -AllowClobber -Force
foreach ($moduleName in (Get-ChildItem -Directory | select Name))
{
Expand All @@ -35,3 +33,5 @@ runs:
Import-Module $moduleName.Name
}
}
Get-Module -ListAvailable

0 comments on commit c57449e

Please sign in to comment.