From 52e4c13f536c14b6ef207795eb732fc87cd56f36 Mon Sep 17 00:00:00 2001 From: Chrissy LeMaire Date: Fri, 12 Apr 2024 17:47:26 +0200 Subject: [PATCH] Address CVE in RestSharp Dangler --- .github/workflows/gallery.yml | 2 +- .github/workflows/integration-tests-repl.yml | 6 +++--- .github/workflows/integration-tests.yml | 4 ++-- .github/workflows/xplat-import.yml | 2 +- dbatools.psd1 | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/gallery.yml b/.github/workflows/gallery.yml index 512404e88e..0ce64ca72a 100644 --- a/.github/workflows/gallery.yml +++ b/.github/workflows/gallery.yml @@ -24,7 +24,7 @@ jobs: - name: Install and cache PowerShell modules uses: potatoqualitee/psmodulecache@v5.2 with: - modules-to-cache: dbatools.library:2024.3.9 + modules-to-cache: dbatools.library:2024.4.12 - name: Download dbatools from Gallery run: | diff --git a/.github/workflows/integration-tests-repl.yml b/.github/workflows/integration-tests-repl.yml index 58b5ad66ef..c9b7b49f17 100644 --- a/.github/workflows/integration-tests-repl.yml +++ b/.github/workflows/integration-tests-repl.yml @@ -15,7 +15,7 @@ jobs: - name: Install and cache PowerShell modules uses: potatoqualitee/psmodulecache@v5.2 with: - modules-to-cache: dbatools.library:2024.3.9 + modules-to-cache: dbatools.library:2024.4.12 - name: Set encryption values run: | @@ -64,7 +64,7 @@ jobs: - name: Install and cache PowerShell modules uses: potatoqualitee/psmodulecache@v5.2 with: - modules-to-cache: dbatools.library:2024.3.9 + modules-to-cache: dbatools.library:2024.4.12 - name: Set encryption values run: | @@ -114,7 +114,7 @@ jobs: - name: Install and cache PowerShell modules uses: potatoqualitee/psmodulecache@v5.2 with: - modules-to-cache: dbatools.library:2024.3.9 + modules-to-cache: dbatools.library:2024.4.12 - name: Set encryption values run: | diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 33c3029795..0e228153a4 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -21,7 +21,7 @@ jobs: - name: Install and cache PowerShell modules uses: potatoqualitee/psmodulecache@v5.2 with: - modules-to-cache: dbatools.library:2024.3.9 + modules-to-cache: dbatools.library:2024.4.12 - name: Set encryption values run: | @@ -71,7 +71,7 @@ jobs: uses: potatoqualitee/psmodulecache@v5.2 with: shell: powershell, pwsh - modules-to-cache: dbatools.library:2024.3.9 + modules-to-cache: dbatools.library:2024.4.12 - name: Install SQL Server localdb uses: potatoqualitee/mssqlsuite@v1.3 diff --git a/.github/workflows/xplat-import.yml b/.github/workflows/xplat-import.yml index bdb509fd4b..ac61736498 100644 --- a/.github/workflows/xplat-import.yml +++ b/.github/workflows/xplat-import.yml @@ -18,7 +18,7 @@ jobs: - name: Install and cache PowerShell modules uses: potatoqualitee/psmodulecache@v5.2 with: - modules-to-cache: dbatools.library:2024.3.9 + modules-to-cache: dbatools.library:2024.4.12 - name: Perform the import shell: pwsh diff --git a/dbatools.psd1 b/dbatools.psd1 index ac4e172077..26d6a45018 100644 --- a/dbatools.psd1 +++ b/dbatools.psd1 @@ -11,7 +11,7 @@ RootModule = 'dbatools.psm1' # Version number of this module. - ModuleVersion = '2.1.13' + ModuleVersion = '2.1.14' # ID used to uniquely identify this module GUID = '9d139310-ce45-41ce-8e8b-d76335aa1789' @@ -29,7 +29,7 @@ Description = "The community module that enables SQL Server Pros to automate database development and server administration" # Modules that must be imported into the global environment prior to importing this module - RequiredModules = @{ ModuleName = 'dbatools.library'; ModuleVersion = '2024.3.9' } + RequiredModules = @{ ModuleName = 'dbatools.library'; ModuleVersion = '2024.4.12' } # Assemblies that must be loaded prior to importing this module RequiredAssemblies = @()