Skip to content

Bump metricshub/workflows from 3 to 4

5d3cc48
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Open

Bump metricshub/workflows from 3 to 4 #53

Bump metricshub/workflows from 3 to 4
5d3cc48
Select commit
Loading
Failed to load commit list.
GitHub Actions / spotbugs completed Oct 15, 2025 in 0s

SpotBugs Source Code Analyzer report

2 violation(s) found

Annotations

Check warning on line 237 in src/main/java/org/metricshub/xflat/handlers/XmlHandler.java

See this annotation in the file changed.

@github-actions github-actions / spotbugs

EI_EXPOSE_REP

org.metricshub.xflat.handlers.XmlHandler.getResultMap() may expose internal representation by returning XmlHandler.resultMap
Raw output
 Returning a reference to a mutable object value stored in one of the object's fields exposes the internal representation of the object. If instances are accessed by untrusted code, and unchecked changes to the mutable object would compromise security or other important properties, you will need to do something different. Returning a new copy of the object is better approach in many situations.

Check warning on line 48 in src/main/java/org/metricshub/xflat/types/SearchPathNode.java

See this annotation in the file changed.

@github-actions github-actions / spotbugs

EI_EXPOSE_REP

org.metricshub.xflat.types.SearchPathNode.getNexts() may expose internal representation by returning SearchPathNode.nexts
Raw output
 Returning a reference to a mutable object value stored in one of the object's fields exposes the internal representation of the object. If instances are accessed by untrusted code, and unchecked changes to the mutable object would compromise security or other important properties, you will need to do something different. Returning a new copy of the object is better approach in many situations.