Skip to content

Commit d63c187

Browse files
authored
[IJ Plugin] Fix MemoryCache package name (#6383)
* Fix MemoryCache package typo * Use actions/cache 4.2.0 (see actions/cache#1510)
1 parent 997912c commit d63c187

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150

151151
# Cache Plugin Verifier IDEs
152152
- name: Setup Plugin Verifier IDEs Cache
153-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #v4.0.2
153+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 #v4.2.0
154154
with:
155155
path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides
156156
key: plugin-verifier-${{ hashFiles('intellij-plugin/build/listProductsReleases.txt') }}

intellij-plugin/src/main/kotlin/com/apollographql/ijplugin/apollodebugserver/ApolloDebugClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ val String.normalizedCacheSimpleName: String
120120
get() = when (this) {
121121
"$apollo3.cache.normalized.api.MemoryCache",
122122
"$apollo4.cache.normalized.api.MemoryCache",
123-
"com.apollographql.cache.normalized.sql.MemoryCache",
123+
"com.apollographql.cache.normalized.memory.MemoryCache",
124124
-> "MemoryCache"
125125

126126
"$apollo3.cache.normalized.sql.SqlNormalizedCache",

0 commit comments

Comments
 (0)