vscode-github-actions
vscode-github-actions copied to clipboard
Suggest to update a new major version of Action
Describe the solution you'd like
Let's say I use the actions/setup-go in my workflow file:
- name: Set up Go
uses: actions/setup-go@v3
with:
cache: true
go-version-file: go.mod
I'd like this extension to show me yellow underline telling me to update to v4 of this action, so I'd have:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
Small feature but would be nice to have it!
Agreed. Keeping dependendabot alive and merging its PRs often falls over. This would make for an efficient way to manage this locally. Otherwise you either have to remember the versions that might exist, or browser dive to find them.