feat: zizmor#4382
Merged
justinmk merged 4 commits intoneovim:masterfrom Apr 12, 2026
Merged
Conversation
justinmk
reviewed
Apr 8, 2026
rmuir
reviewed
Apr 10, 2026
This was referenced Apr 16, 2026
10 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds support for zizmor, a static analysis tool for GitHub Actions.
There have been a number of supply chain attacks recently that have me thinking about security, and some colleagues have recommended zizmor for catching some of the more common things (like pinning action versions). I saw that it has an experimental LSP mode, so I've added it here.
This is basically a copy of what is already in https://github.com/neovim/nvim-lspconfig/blob/master/lsp/gh_actions_ls.lua, except the docs and cmd have been updated to refer to zizmor rather than the github actions language server. That means that only github actions files are targeted, using the same machinery as
gh_actions_lsalready uses. For clarity, github actions LS provides completion, definitions, etc for github actions files while zizmor focuses on security-related concerns, so they cover different use cases.Right now, the project has 4.1k stars and is very active, so it meets the criteria for being added as a supported language server here, but I will note that zizmor's LSP mode is experimental. There's a meta-issue tracking LSP work here for anyone interested.