From 0b05635d9ed56028e379a58db6f0cdc24de03d10 Mon Sep 17 00:00:00 2001 From: Joshua Corrick Date: Mon, 12 Jul 2021 19:53:32 -0400 Subject: [PATCH] Ensure PSSlack 1.0.6 in all locations --- README.md | 1 - docker/alpine3.8/Dockerfile | 2 +- docker/nano/Dockerfile | 2 +- docker/ubuntu16.04/Dockerfile | 2 +- docker/ubuntu18.04/Dockerfile | 2 +- docker/windowsservercore/Dockerfile | 2 +- requirements.psd1 | 2 +- 7 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e31b6289..a163721a 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,6 @@ Want some in-depth guides? Check out [ChatOps the Easy Way](https://leanpub.com/

- # Introduction PoshBot is a chat bot written in [PowerShell](https://msdn.microsoft.com/powershell). diff --git a/docker/alpine3.8/Dockerfile b/docker/alpine3.8/Dockerfile index 20c91128..b02ae612 100644 --- a/docker/alpine3.8/Dockerfile +++ b/docker/alpine3.8/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/powershell:7.0.3-alpine-3.8 as base SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted; \ Install-Module Configuration -RequiredVersion 1.3.1 -Repository PSGallery -Scope AllUsers -Verbose; \ - Install-Module PSSlack -RequiredVersion 1.0.2 -Repository PSGallery -Scope AllUsers -Verbose; + Install-Module PSSlack -RequiredVersion 1.0.6 -Repository PSGallery -Scope AllUsers -Verbose; FROM base as src ARG version diff --git a/docker/nano/Dockerfile b/docker/nano/Dockerfile index 893b9dd2..8cefc2ec 100644 --- a/docker/nano/Dockerfile +++ b/docker/nano/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/powershell:7.0.3-nanoserver-2004 as base SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $VerbosePreference = 'Continue'; $ProgressPreference = 'SilentlyContinue';"] RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted; \ Install-Module Configuration -RequiredVersion 1.3.1 -Repository PSGallery -Scope AllUsers -Verbose; \ - Install-Module PSSlack -RequiredVersion 1.0.2 -Repository PSGallery -Scope AllUsers -Verbose; + Install-Module PSSlack -RequiredVersion 1.0.6 -Repository PSGallery -Scope AllUsers -Verbose; FROM base as src ARG version diff --git a/docker/ubuntu16.04/Dockerfile b/docker/ubuntu16.04/Dockerfile index 9555aa6c..33ad8258 100644 --- a/docker/ubuntu16.04/Dockerfile +++ b/docker/ubuntu16.04/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/powershell:7.0.3-ubuntu-16.04 as base SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted; \ Install-Module Configuration -RequiredVersion 1.3.1 -Repository PSGallery -Scope AllUsers -Verbose; \ - Install-Module PSSlack -RequiredVersion 1.0.2 -Repository PSGallery -Scope AllUsers -Verbose; + Install-Module PSSlack -RequiredVersion 1.0.6 -Repository PSGallery -Scope AllUsers -Verbose; FROM base as src ARG version diff --git a/docker/ubuntu18.04/Dockerfile b/docker/ubuntu18.04/Dockerfile index 6a0a7e66..21f28e73 100644 --- a/docker/ubuntu18.04/Dockerfile +++ b/docker/ubuntu18.04/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/powershell:7.0.3-ubuntu-18.04 as base SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted; \ Install-Module Configuration -RequiredVersion 1.3.1 -Repository PSGallery -Scope AllUsers -Verbose; \ - Install-Module PSSlack -RequiredVersion 1.0.2 -Repository PSGallery -Scope AllUsers -Verbose; + Install-Module PSSlack -RequiredVersion 1.0.6 -Repository PSGallery -Scope AllUsers -Verbose; FROM base as src ARG version diff --git a/docker/windowsservercore/Dockerfile b/docker/windowsservercore/Dockerfile index 21a02db5..fc442311 100644 --- a/docker/windowsservercore/Dockerfile +++ b/docker/windowsservercore/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/powershell:7.0.3-windowsservercore-2004 as base SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted; \ Install-Module Configuration -RequiredVersion 1.3.1 -Repository PSGallery -Scope AllUsers -Verbose; \ - Install-Module PSSlack -RequiredVersion 1.0.2 -Repository PSGallery -Scope AllUsers -Verbose; + Install-Module PSSlack -RequiredVersion 1.0.6 -Repository PSGallery -Scope AllUsers -Verbose; FROM base as src ARG version diff --git a/requirements.psd1 b/requirements.psd1 index 209468ec..54cdce9f 100644 --- a/requirements.psd1 +++ b/requirements.psd1 @@ -7,6 +7,6 @@ Configuration = '1.3.1' Pester = '4.9.0' PSScriptAnalyzer = '1.18.3' - PSSlack = '1.0.2' + PSSlack = '1.0.6' platyPS = '0.14.0' }