Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

INFRA-149: Pinning Az PS modules to version 10.4.1 #32

Merged
merged 5 commits into from
Nov 20, 2023
Merged
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
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
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

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