diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 6e81bb65694808..aecb9596a5d32e 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -87,7 +87,7 @@ jobs:
echo "store=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Restore pnpm cache
- uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
+ uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ${{ steps.pnpm-cache.outputs.store }}
key: ${{ runner.os }}-pnpm-store-cache-
diff --git a/.github/workflows/format-and-commit.yml b/.github/workflows/format-and-commit.yml
index 461ba1f843a9a8..5f9dfffcd941f8 100644
--- a/.github/workflows/format-and-commit.yml
+++ b/.github/workflows/format-and-commit.yml
@@ -24,7 +24,7 @@ jobs:
id: date
run: echo "date=$(/bin/date -u "+%Y-%m-%d")" >> $GITHUB_OUTPUT
- - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
+ - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
# dprint caches info about the files in the repo to skip formatting them.
# However, since package.json and .dprint.jsonc don't change very often,
diff --git a/.github/workflows/pnpm-cache.yml b/.github/workflows/pnpm-cache.yml
index f91d14c88d6927..36e104e490c35a 100644
--- a/.github/workflows/pnpm-cache.yml
+++ b/.github/workflows/pnpm-cache.yml
@@ -27,7 +27,7 @@ jobs:
run: pnpm install
- name: Save pnpm cache
- uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
+ uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ${{ steps.pnpm-cache.outputs.store }}
key: ${{ runner.os }}-pnpm-store-cache-${{ steps.pnpm-cache.outputs.date }}
diff --git a/types/react-file-icon/index.d.ts b/types/react-file-icon/index.d.ts
index 465f4714f03c54..b4069162d32de2 100644
--- a/types/react-file-icon/index.d.ts
+++ b/types/react-file-icon/index.d.ts
@@ -3,9 +3,11 @@ import * as React from "react";
export type IconType =
| "3d"
| "acrobat"
+ | "android"
| "audio"
| "binary"
| "code"
+ | "code2"
| "compressed"
| "document"
| "drive"
diff --git a/types/react-file-icon/react-file-icon-tests.tsx b/types/react-file-icon/react-file-icon-tests.tsx
index 62a09a8859d385..f0284331dff02f 100644
--- a/types/react-file-icon/react-file-icon-tests.tsx
+++ b/types/react-file-icon/react-file-icon-tests.tsx
@@ -6,3 +6,21 @@ class TestFileIcon extends React.Component {
return ;
}
}
+
+class TestFileIconCode extends React.Component {
+ render() {
+ return ;
+ }
+}
+
+class TestFileIconCode2 extends React.Component {
+ render() {
+ return ;
+ }
+}
+
+class TestFileIconAndroid extends React.Component {
+ render() {
+ return ;
+ }
+}