bump wp-plugin-go to v0.5.0 (#11)

This commit is contained in:
Robert Kaussow 2023-08-21 11:41:28 +02:00 committed by GitHub
parent 35fa734ac0
commit 727526f646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 6 deletions

2
go.mod
View File

@ -4,7 +4,7 @@ go 1.21
require (
github.com/rs/zerolog v1.30.0
github.com/thegeeklab/wp-plugin-go v0.4.0
github.com/thegeeklab/wp-plugin-go v0.5.0
github.com/urfave/cli/v2 v2.25.7
golang.org/x/sys v0.11.0
)

2
go.sum
View File

@ -16,6 +16,8 @@ github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/thegeeklab/wp-plugin-go v0.4.0 h1:eTkRH04gAAsYgCUekk8RBmPrIXk+UG+EJtRkoUFllLs=
github.com/thegeeklab/wp-plugin-go v0.4.0/go.mod h1:y0k5zaKWjdGbgkaOHhEPFEL6p+yOLOjqHy0LWOrv0MM=
github.com/thegeeklab/wp-plugin-go v0.5.0 h1:PEORQl365YxqqYSu8rFoQ3hltTcFYSJCs8s9MDCej8A=
github.com/thegeeklab/wp-plugin-go v0.5.0/go.mod h1:y0k5zaKWjdGbgkaOHhEPFEL6p+yOLOjqHy0LWOrv0MM=
github.com/urfave/cli/v2 v2.25.7 h1:VAzn5oq403l5pHjc4OhD54+XGO9cdKVL/7lDjF+iKUs=
github.com/urfave/cli/v2 v2.25.7/go.mod h1:8qnjx1vcq5s2/wpsqoZFndg2CE5tNFyrTvS6SinrnYQ=
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 h1:bAn7/zixMGCfxrRTfdpNzjtPYqr8smhKouy9mxVdGPU=

View File

@ -8,7 +8,6 @@ import (
"path/filepath"
"github.com/thegeeklab/wp-git-action/git"
"github.com/urfave/cli/v2"
)
var (
@ -21,10 +20,8 @@ var (
ErrGitCloneDestintionNotValid = errors.New("destination not valid")
)
// Execute provides the implementation of the plugin.
//
//nolint:revive
func (p *Plugin) run(ctx context.Context, cCtx *cli.Context) error {
func (p *Plugin) run(ctx context.Context) error {
if err := p.Validate(); err != nil {
return fmt.Errorf("validation failed: %w", err)
}

View File

@ -6,7 +6,7 @@ import (
"github.com/urfave/cli/v2"
)
// Plugin implements provide the plugin implementation.
// Plugin implements provide the plugin.
type Plugin struct {
*wp.Plugin
Settings *Settings