Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-ext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "16.x"

Expand All @@ -27,7 +27,7 @@ jobs:
run: npx vsce package

- name: Upload VSIX
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: VSIX package
path: ./*.vsix
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ The MQL extension for Visual Studio code provides validation and completion capa

- [Sublime Security homepage](https://sublime.security)
- [Detection rules](https://github.com/sublime-security/detection-rules) on GitHub
- [Sublime Security Platform](https://platform.sublimesecurity.com)
- [Platform documentation](https://docs.sublimesecurity.com/docs)
- [Message Data Model (MDM)](https://docs.sublimesecurity.com/docs/message-data-model)
- [Message Query Language (MDM)](https://docs.sublimesecurity.com/docs/message-query-language)
- [Sublime Security Platform](https://platform.sublime.security)
- [Platform documentation](https://docs.sublime.security/docs)
- [Message Data Model (MDM)](https://docs.sublime.security/docs/mdm)
- [Message Query Language (MDM)](https://docs.sublime.security/docs/message-query-language)

<!-- Developers: See https://code.visualstudio.com/api/language-extensions/language-server-extension-guide for more details -->
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@
"type": "string",
"description": "The host of the MQL Language Server",
"title": "Host",
"default": "analyzer.sublimesecurity.com",
"default": "analyzer.sublime.security",
"order": 1
},
"sublimeSecurity.messageQueryLanguage.languageServer.apiKey": {
"type": "string",
"markdownDescription": "Platform API key used for language server authentication. This is only required if the language server is enabled and using a host other than `analyzer.sublimesecurity.com`.",
"markdownDescription": "Platform API key used for language server authentication. This is only required if the language server is enabled and using a host other than `analyzer.sublime.security`.",
"title": "API key",
"order": 2
},
Expand Down