From 45f855162cfc3713b7aed73793e2dccadfd98fa3 Mon Sep 17 00:00:00 2001 From: Mario Minardi Date: Fri, 10 Jul 2026 14:15:01 -0600 Subject: [PATCH] testing cache --- .github/workflows/test.yml | 1 - src/main.ts | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f87b622..d1af1d6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -139,7 +139,6 @@ jobs: audience: ${{ matrix.credential-type == 'workload-identity' && secrets.TS_AUDIENCE || ''}} tags: "tag:ci" version: "${{ matrix.version }}" - use-cache: false timeout: "5m" retry: 3 ping: "${{ matrix.ping }}" diff --git a/src/main.ts b/src/main.ts index 109d4c1..39c0df4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -387,6 +387,8 @@ async function installTailscale( const cacheKey = generateCacheKey(config, runnerOS); const toolPath = getToolPath(config, runnerOS); + logInfo(config.logMode, `cache key is ${cacheKey} and tool path is ${toolPath}`); + // Try to restore from cache first if (config.useCache && cacheKey) { const cacheHit = await cache.restoreCache([toolPath], cacheKey);