8000 Minor fix · actions/setup-go@9eecd2d · GitHub
[go: up one dir, main page]

Skip to content

Commit 9eecd2d

Browse files
author
Vladimir Safonkin
committed
Minor fix
1 parent 75be648 commit 9eecd2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cache-save.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const cachePackages = async () => {
5959
}
6060

6161
const cacheId = await cache.saveCache(cachePaths, primaryKey);
62-
if (cacheId == -1) {
62+
if (cacheId === -1) {
6363
return;
6464
}
6565
core.info(`Cache saved with the key: ${primaryKey}`);

0 commit comments

Comments
 (0)
0