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);