diff --git a/pom.xml b/pom.xml
index d724e592..03378d73 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
org.jenkins-ci.plugins
plugin
- 4.76
+ 4.77
org.jenkins-ci.plugins.workflow
diff --git a/src/main/java/org/jenkinsci/plugins/workflow/support/actions/LogStorageAction.java b/src/main/java/org/jenkinsci/plugins/workflow/support/actions/LogStorageAction.java
index 77703499..5944a4de 100644
--- a/src/main/java/org/jenkinsci/plugins/workflow/support/actions/LogStorageAction.java
+++ b/src/main/java/org/jenkinsci/plugins/workflow/support/actions/LogStorageAction.java
@@ -24,6 +24,7 @@
package org.jenkinsci.plugins.workflow.support.actions;
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import hudson.console.AnnotatedLargeText;
import hudson.model.TaskListener;
import java.io.IOException;
@@ -47,6 +48,7 @@
@Restricted(NoExternalUse.class) // for use from DefaultStepContext only
public class LogStorageAction extends LogAction implements FlowNodeAction, PersistentAction {
+ @SuppressFBWarnings(value="PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification="TODO clean up")
public transient FlowNode node;
private LogStorageAction(FlowNode node) {