Discussion: get rid of setup-go dep, due to outdated code and inability to update any dependencies
See original GitHub issueHello, I would like to ask everyone in @golangci/team and @golangci/core-team about you opinion in removing the setup-go as direct dependency.
Now we are stuck in upgrading any dependencies, fixing any vulns, due to inability to build the setup-go package.
So if we remove it then we will need to explicitly install go, like
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2 # <-- here
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
of course it will require to bump v3.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:7
- Comments:14 (10 by maintainers)
Top Results From Across the Web
Dependency Scanning - GitLab Docs
GitLab scans all dependencies, including transitive dependencies (also known as nested dependencies). You can take advantage of dependency scanning by ...
Read more >Keeping dependencies up-to-date in Composer
So what if one or more dependencies is outdated? You update them! To update dependencies two commands can be used: composer update and...
Read more >2022 Publication 17 - IRS
2021, it expired at the end of 2022 and must be renewed if you need to file a U.S. federal tax re- turn...
Read more >How to remove unused dependencies from composer?
The right way to do this is: composer remove jenssegers/mongodb --update-with-dependencies. I must admit the flag here is not quite obvious ...
Read more >What Is Configuration Management and Why Is It Important?
Configuration management (CM) is a systems engineering process for ... to update a piece of software can leave a system with an outdated...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@StevenACoffman here it is: https://github.com/golangci/golangci-lint-action/pull/404/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R12
the code is merged, so I will work on updating some other dependencies and the will bump v3 of the action