Skip to content

Commit 9a9b5ec

Browse files
authored
Do not use v6.14.3 for spectral (#107)
1 parent 5c3e118 commit 9a9b5ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Workleap.OpenApi.MSBuild/Spectral/SpectralInstaller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
internal class SpectralInstaller
44
{
55
// If the line below changes, make sure to update the corresponding regex on the renovate.json file
6-
private const string SpectralVersion = "6.14.3";
6+
private const string SpectralVersion = "6.14.2";
77
private const string SpectralDownloadUrlFormat = "https://github.com/stoplightio/spectral/releases/download/v{0}/{1}";
88

99
private readonly ILoggerWrapper _loggerWrapper;

src/Workleap.OpenApi.MSBuild/Spectral/SpectralRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Workleap.OpenApi.MSBuild.Spectral;
88
internal sealed class SpectralRunner
99
{
1010
// If the line below changes, make sure to update the corresponding regex on the renovate.json file
11-
private const string SpectralVersion = "6.14.3";
11+
private const string SpectralVersion = "6.14.2";
1212

1313
// Matches logs with the format of: 0 problems (0 errors, 0 warnings, 0 infos, 0 hints)
1414
private static readonly Regex SpectralLogWarningPattern = new(@"[0-9]+ problems? \((?<errors>[0-9]+) errors?, (?<warnings>[0-9]+) warnings?, [0-9]+ infos?, [0-9]+ hints?\)");

0 commit comments

Comments
 (0)