diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml
index 962d7d887be46..61bc214e79f7f 100644
--- a/.github/workflows/scorecard.yml
+++ b/.github/workflows/scorecard.yml
@@ -25,7 +25,7 @@ jobs:
steps:
- name: 'Checkout code'
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
+ uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
persist-credentials: false
@@ -47,6 +47,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard.
- name: 'Upload to code-scanning'
- uses: github/codeql-action/upload-sarif@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5
+ uses: github/codeql-action/upload-sarif@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7
with:
sarif_file: results.sarif
diff --git a/.pullapprove.yml b/.pullapprove.yml
index 11bb0aee0f354..96dbe6382cbc9 100644
--- a/.pullapprove.yml
+++ b/.pullapprove.yml
@@ -746,6 +746,7 @@ groups:
users:
- alxhub
- atscott
+ - dylhunn
# =========================================================
# zone.js
diff --git a/adev/src/app/features/playground/playground.component.scss b/adev/src/app/features/playground/playground.component.scss
index 1e0a4ae145ad8..8eb97abd1e702 100644
--- a/adev/src/app/features/playground/playground.component.scss
+++ b/adev/src/app/features/playground/playground.component.scss
@@ -2,7 +2,7 @@
display: block;
padding: var(--layout-padding);
padding-block-end: 100px;
- height: calc(98vh);
+ height: 100vh;
width: 100%;
box-sizing: border-box;
diff --git a/adev/src/app/features/tutorial/tutorial.component.scss b/adev/src/app/features/tutorial/tutorial.component.scss
index ceb2f9865296f..fd1ec1df958b9 100644
--- a/adev/src/app/features/tutorial/tutorial.component.scss
+++ b/adev/src/app/features/tutorial/tutorial.component.scss
@@ -105,7 +105,7 @@ $column-width: calc(50% - #{$resizer-width} - var(--layout-padding));
margin-block-start: var(--layout-padding);
cursor: col-resize;
align-self: stretch;
- height: var(--fixed-content-height);
+ height: 100vh;
&::before {
content: '';
@@ -133,7 +133,7 @@ $column-width: calc(50% - #{$resizer-width} - var(--layout-padding));
width: 100%;
min-width: 300px;
padding-block-start: var(--layout-padding);
- height: var(--fixed-content-height);
+ height: 100vh;
}
.adev-split-tutorial {
diff --git a/adev/src/content/best-practices/style-guide.md b/adev/src/content/best-practices/style-guide.md
index ce209b4df3e36..28219b335721a 100644
--- a/adev/src/content/best-practices/style-guide.md
+++ b/adev/src/content/best-practices/style-guide.md
@@ -730,7 +730,7 @@ If the property is hard to construct a default value for, use `?` to explicitly
You may want to have a required `@Input` field, meaning all your component users are required to pass that attribute.
In such cases, use a default value.
-Just suppressing the TypeScript error with `!` is insufficient and should be avoided because it will prevent the type checker ensure the input value is provided.
+Just suppressing the TypeScript error with `!` is insufficient and should be avoided because it will prevent the type checker from ensuring the input value is provided.
diff --git a/adev/src/content/reference/configs/file-structure.md b/adev/src/content/reference/configs/file-structure.md
index 618c6adde14c1..3dc429f008325 100644
--- a/adev/src/content/reference/configs/file-structure.md
+++ b/adev/src/content/reference/configs/file-structure.md
@@ -64,7 +64,7 @@ Subfolders contain the application source and application-specific configuration
| Application support files | Purpose |
|:--- |:--- |
| `app/` | Contains the component files in which your application logic and data are defined. See details [below](#app-src). |
-| `assets/` | Contains image and other asset files to be served as static files by the dev server and copied as-is when you build your application. |
+| `public/` | Contains image and other asset files to be served as static files by the dev server and copied as-is when you build your application. |
| `favicon.ico` | An icon to use for this application in the bookmark bar. |
| `index.html` | The main HTML page that is served when someone visits your site. The CLI automatically adds all JavaScript and CSS files when building your app, so you typically don't need to add any `