Skip to content

Commit

Permalink
Bump minimum baseline to 2.426.3 (#3795)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Mar 3, 2024
1 parent 3cf6653 commit 608850a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -27,7 +27,7 @@ public class HostingChecker {

public static final String INVALID_FORK_FROM = "Repository URL '%s' is not a valid GitHub repository (check that you do not have .git at the end, GitHub API doesn't support this).";

public static final Version LOWEST_JENKINS_VERSION = new Version(2, 414, 3);
public static final Version LOWEST_JENKINS_VERSION = new Version(2, 426, 3);

public static void main(String[] args) throws IOException {
new HostingChecker().checkRequest(Integer.parseInt(args[0]));
Expand Down
Expand Up @@ -32,7 +32,7 @@ public class MavenVerifier implements BuildSystemVerifier {
private static final int MAX_LENGTH_OF_ARTIFACT_ID = 37;
private static final Logger LOGGER = LoggerFactory.getLogger(MavenVerifier.class);

public static final Version LOWEST_PARENT_POM_VERSION = new Version(4, 76);
public static final Version LOWEST_PARENT_POM_VERSION = new Version(4, 78);
public static final Version PARENT_POM_WITH_JENKINS_VERSION = new Version(2);

public static final String INVALID_POM = "The pom.xml file in the root of the origin repository is not valid";
Expand Down

0 comments on commit 608850a

Please sign in to comment.