-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to the latest spellcheck GH Action (#1989)
Sync the configs as well Signed-off-by: Tim Smith <[email protected]>
- Loading branch information
Showing
9 changed files
with
22 additions
and
30 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,3 @@ Sorce | |
^untilling$ | ||
^wether.* | ||
\w*(?<!right-)click | ||
press |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,12 +23,12 @@ jobs: | |
steps: | ||
- name: check-spelling | ||
id: spelling | ||
uses: check-spelling/[email protected].21 | ||
uses: check-spelling/[email protected].22 | ||
with: | ||
suppress_push_for_open_pull_request: 1 | ||
checkout: true | ||
post_comment: 0 | ||
dictionary_source_prefixes: '{"mondoo": "https://raw.githubusercontent.com/mondoohq/spellcheck-dictionary/main/", "cspell": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20220816/dictionaries/"}' | ||
dictionary_source_prefixes: '{"mondoo": "https://raw.githubusercontent.com/mondoohq/spellcheck-dictionary/main/", "cspell": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20230509/dictionaries/"}' | ||
extra_dictionaries: | ||
cspell:aws/aws.txt | ||
cspell:filetypes/filetypes.txt | ||
|
@@ -47,7 +47,7 @@ jobs: | |
if: (success() || failure()) && needs.spelling.outputs.followup | ||
steps: | ||
- name: comment | ||
uses: check-spelling/[email protected].21 | ||
uses: check-spelling/[email protected].22 | ||
with: | ||
checkout: true | ||
task: ${{ needs.spelling.outputs.followup }} |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
## os provider for cnquery/cnspec | ||
|
||
This provides makes the operating system accessible, including Linux, MacOS, Windows and many more. | ||
This provides makes the operating system accessible, including Linux, macOS, Windows and many more. | ||
|
||
It provides connectors for Local OS, SSH, WinRM, and Docker. | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ This transport reads a directory and treats it as its own platform. This is usef | |
|
||
## Testing | ||
|
||
If you need to test a remote linux system on macos, it is possible to spin up the machine and mount the whole filesystem to your local machine. | ||
If you need to test a remote Linux system on macOS, it is possible to spin up the machine and mount the whole filesystem to your local machine. | ||
|
||
```bash | ||
# NOTE: make sure you do NOT run the following as sudo | ||
|
@@ -34,6 +34,7 @@ On debian, the needed package is called `sshfs`. | |
When you want to connect to a Vagrant VM, you need to add an ssh key to the root user. | ||
|
||
Then you can use root, to mount via sshfs: | ||
|
||
```bash | ||
sshfs -o default_permissions [email protected]:/ ./mnt -o IdentityFile=/home/you/.ssh/id_rsa -o Port=2222 | ||
``` | ||
``` |
This file contains 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