All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openrewrite.github.ChangeAction Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
/*
 * Copyright 2024 the original author or authors.
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *

* https://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.openrewrite.github; import org.openrewrite.*; import org.openrewrite.yaml.ChangeValue; import lombok.EqualsAndHashCode; import lombok.Value; @Value @EqualsAndHashCode(callSuper = false) public class ChangeAction extends Recipe { @Option(displayName = "Action", description = "Name of the action to match.", example = "gradle/wrapper-validation-action") String oldAction; @Option(displayName = "Action", description = "Name of the action to use instead.", example = "gradle/actions/wrapper-validation") String newAction; @Option(displayName = "Version", description = "New version to use.", example = "v3") String newVersion; @Override public String getDisplayName() { return "Change GitHub Action"; } @Override public String getDescription() { return "Change a GitHub Action in any `.github/workflows/*.yml` file."; } @Override public TreeVisitor getVisitor() { return Preconditions.check( new FindSourceFiles(".github/workflows/*.yml"), new ChangeValue( "$.jobs..steps[?(@.uses =~ '" + oldAction + "(?:@.+)?')].uses", newAction + '@' + newVersion, null).getVisitor()); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy