vscode-github-actions icon indicating copy to clipboard operation
vscode-github-actions copied to clipboard

Suggest to update a new major version of Action

Open bartekpacia opened this issue 2 years ago • 1 comments

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!

bartekpacia avatar Jul 28 '23 20:07 bartekpacia

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.

IanButterworth avatar Aug 05 '24 20:08 IanButterworth