Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Build Fails Due to Dependency Version Mismatch

Open
#97 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
4/5
Estimated time
3-5 days
Newbie friendliness
25/100
Issue type
Bug
Clarity
Mostly clear
Activity status
Stale
Tech stack
go
Domain
build-system

Research direction

Start by reproducing the failure with the current Go build and inspect the dependency import from cmd/ssh2docker. Review the proposed go.mod replacement for github.com/codegangsta/cli and related module paths, then verify that the project builds successfully with the updated dependency configuration. README.md is mentioned as a possible place for build guidance.

Written by the indexing model from the issue text.

Description

Description

While rebuilding the project using the latest version of Go, with Go's official recommendation to use gomodule for initialization and building, we found that the build process fails due to mismatched module path.

The following error log was produced during the build process:

......
go: found github.com/codegangsta/cli in github.com/codegangsta/cli v1.22.15
go: found github.com/smartystreets/goconvey/convey in github.com/smartystreets/goconvey v1.8.1
go: github.com/moul/ssh2docker/cmd/ssh2docker imports
        github.com/codegangsta/cli: github.com/codegangsta/cli@v1.22.15: parsing go.mod:
        module declares its path as: github.com/urfave/cli
                but was required as: github.com/codegangsta/cli

Result

The build fails with errors related to mismatched module path.

The error dependency is github.com/codegangsta/cli.

Reason

The error log suggests module path declaration github.com/urfave/cli in go.mod, which is inconsistent with import path github.com/codegangsta/cli .

Proposed Solution

To resolve this issue, we analyzed the project and identified the correct versions of the required dependencies.

The analysis shows that the correct declaration for the dependency is replace github.com/codegangsta/cli => github.com/urfave/cli v1.22.9.

Consider adopting this suggested version to prevent other developers from encountering build failures when constructing the project.

This information can be documented in the README.md file or another relevant location.

Additional Suggestions

To ensure reproducible builds and align with the evolving trends of the Go programming language, it is recommended that the current project be migrated to the Go module mechanism.

Updating to the go module mechanism allows for managing third-party dependency versions through the go.mod file, which provides a centralized and consistent way to specify dependency constraints.

We have generated a go.mod file with the correct versions of the third-party dependencies needed for this project.

The suggested go.mod file is as follows:


require github.com/apex/log v1.8.1-0.20200817094143-421394d88c94

require github.com/parnurzeal/gorequest v0.3.1-0.20240221155414-2f6d15e4738b

require github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568

require github.com/pkg/errors v0.9.2-0.20201214064552-5dd12d0cfe7f // indirect

require github.com/stretchr/testify v1.10.0 // indirect

replace github.com/cpuguy83/go-md2man => github.com/cpuguy83/go-md2man/v2 v2.0.3

require github.com/mitchellh/go-homedir v1.1.0

require github.com/kr/pty v1.1.8

require github.com/creack/pty v1.1.23 // indirect

replace github.com/codegangsta/cli => github.com/urfave/cli v1.22.9

replace github.com/moul/http2curl => moul.io/http2curl/v2 v2.3.1-0.20221024080105-10c404f653f7

require (
	github.com/codegangsta/cli v0.0.0-00010101000000-000000000000
	github.com/smartystreets/goconvey v1.8.1
	golang.org/x/crypto v0.32.0
)

require (
	github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
	github.com/elazarl/goproxy v1.7.0 // indirect
	github.com/gopherjs/gopherjs v1.17.2 // indirect
	github.com/jtolds/gls v4.20.0+incompatible // indirect
	github.com/russross/blackfriday/v2 v2.0.1 // indirect
	github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
	github.com/smarty/assertions v1.15.0 // indirect
	golang.org/x/net v0.34.0 // indirect
	golang.org/x/sys v0.29.0 // indirect
	moul.io/http2curl v1.0.0 // indirect
)

Additional Information:

This issue was identified as part of our research project focused on automating the analysis of GOPATH projects to provide accurate dependency versions for seamless migration to Go Modules. We value your feedback and would appreciate any comments or suggestions regarding this approach.

Dominant language
Go
Stars
198
Forks
18
PR merge metrics
No merged PRs in 30d

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from moul/ssh2docker

All issues in moul/ssh2docker

Similar issues

More Go issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.