grim/convey

update the dependencies
redux
2021-12-18, Gary Kramlich
8d1e9a570376
update the dependencies
package docker
import (
"fmt"
log "github.com/sirupsen/logrus"
"keep.imfreedom.org/grim/convey/environment"
"keep.imfreedom.org/grim/convey/runtime"
"keep.imfreedom.org/grim/convey/tasks"
)
type Environment struct{}
// New creates a new Environment task.
func (e *Environment) New() tasks.Task {
return &Environment{}
}
// Valid validates the task.
func (e *Environment) Valid() error {
return fmt.Errorf("The docker/environment tasks was removed in version 0.15.0")
}
// Executes the task
func (e *Environment) Execute(name string, logger *log.Entry, env environment.Environment, rt *runtime.Runtime) error {
return nil
}
func (e *Environment) Deprecated() error {
return nil
}