diff --git a/src/Workleap.OpenApi.MSBuild/Spectral/SpectralInstaller.cs b/src/Workleap.OpenApi.MSBuild/Spectral/SpectralInstaller.cs index 62066cc..af4482a 100644 --- a/src/Workleap.OpenApi.MSBuild/Spectral/SpectralInstaller.cs +++ b/src/Workleap.OpenApi.MSBuild/Spectral/SpectralInstaller.cs @@ -3,7 +3,7 @@ internal class SpectralInstaller { // If the line below changes, make sure to update the corresponding regex on the renovate.json file - private const string SpectralVersion = "6.11.0"; + private const string SpectralVersion = "6.11.1"; private const string SpectralDownloadUrlFormat = "https://github.com/stoplightio/spectral/releases/download/v{0}/{1}"; private readonly ILoggerWrapper _loggerWrapper; diff --git a/src/Workleap.OpenApi.MSBuild/Spectral/SpectralRunner.cs b/src/Workleap.OpenApi.MSBuild/Spectral/SpectralRunner.cs index c93378b..f13cb89 100644 --- a/src/Workleap.OpenApi.MSBuild/Spectral/SpectralRunner.cs +++ b/src/Workleap.OpenApi.MSBuild/Spectral/SpectralRunner.cs @@ -8,7 +8,7 @@ namespace Workleap.OpenApi.MSBuild.Spectral; internal sealed class SpectralRunner { // If the line below changes, make sure to update the corresponding regex on the renovate.json file - private const string SpectralVersion = "6.11.0"; + private const string SpectralVersion = "6.11.1"; // Matches logs with the format of: 0 problems (0 errors, 0 warnings, 0 infos, 0 hints) private static readonly Regex SpectralLogWarningPattern = new(@"[0-9]+ problems? \((?[0-9]+) errors?, (?[0-9]+) warnings?, [0-9]+ infos?, [0-9]+ hints?\)");