Skip to content

Commit 819b8ee

Browse files
authored
Update VSCode Prettier extension and GitHub Actions versions (#1796)
* Update VSCode Prettier extension and GitHub Actions versions Changed Prettier extension references from 'prettier.prettier-vscode' to 'esbenp.prettier-vscode' in VSCode config files. Updated GitHub Actions in documentation to use specific commit SHAs for improved security and reproducibility. * Update .cspell.json
1 parent 87a1191 commit 819b8ee

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"Cstop",
3030
"Cstyle",
3131
"Csvg",
32+
"dbaeumer",
3233
"enochian",
3334
"esbenp",
3435
"evenodd",

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"recommendations": [
33
"dbaeumer.vscode-eslint",
44
"EditorConfig.EditorConfig",
5-
"prettier.prettier-vscode",
5+
"esbenp.prettier-vscode",
66
"streetsidesoftware.code-spell-checker"
77
]
88
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"[javascript][typescript][json][jsonc][markdown][yaml]": {
3-
"editor.defaultFormatter": "prettier.prettier-vscode",
3+
"editor.defaultFormatter": "esbenp.prettier-vscode",
44
"editor.formatOnSave": true
55
},
66
"[javascript][typescript]": {

website/src/content/docs/usage/github-code-scanning.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout code
37-
uses: actions/checkout@v6
37+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3838
with:
3939
persist-credentials: false
4040

4141
- name: Set up Node.js
42-
uses: actions/setup-node@v6
42+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
4343

4444
# If you need a website build script, include the steps here
4545

@@ -48,7 +48,7 @@ jobs:
4848
# Continue even if HTMLHint finds issues
4949

5050
- name: Upload SARIF file
51-
uses: github/codeql-action/upload-sarif@v4
51+
uses: github/codeql-action/upload-sarif@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
5252
with:
5353
sarif_file: website/htmlhint.sarif
5454
category: HTMLHint

0 commit comments

Comments
 (0)