Skip to content

Commit eca2ca9

Browse files
committed
disable upload sarif
1 parent 12a1c6c commit eca2ca9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/build_maven_package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ jobs:
3636
snyk-dockertag: fj-doc-playground-quarkus
3737
maven-additional-profiles: ',buildreact'
3838
disable-maven-dependency-submission: ${{ vars.DISABLE_MAVEN_DEPENDENCY_SUBMISSION }}
39+
disable-upload-sarif: ${{ vars.DISABLE_UPLOAD_SARIF }}
3940
maven-core: '2'

fj-doc-playground-quarkus/src/main/java/org/fugerit/java/doc/playground/catalog/CatalogRest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import java.io.Reader;
44
import java.util.stream.Collectors;
55

6+
import jakarta.ws.rs.core.NewCookie;
67
import org.fugerit.java.core.io.StreamIO;
78
import org.fugerit.java.core.lang.helpers.StringUtils;
89
import org.fugerit.java.core.util.collection.OptionItem;
@@ -26,6 +27,7 @@ public class CatalogRest {
2627
@Produces(MediaType.APPLICATION_JSON)
2728
@Path("/list/type/{type}")
2829
public Response catalogListFilterType( @PathParam("type") String type ) {
30+
2931
return RestHelper.defaultHandle( () -> Response.ok().entity(
3032
DocCatalogSample.getInstance().getPlaygroundCoreCatalog()
3133
.stream().filter( e -> type.equalsIgnoreCase( e.getType() ) ).map(

0 commit comments

Comments
 (0)