Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minimum baseline to 2.426.3 #3795

Merged
merged 1 commit into from Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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