From 4009b18c904630778ba49dc106ba0d2c7fe94222 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Thu, 6 Aug 2026 21:02:55 +0200 Subject: [PATCH] ci: include arch in bun dep cache key --- .gitea/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 6b02052..0e12bed 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -24,7 +24,7 @@ jobs: with: path: | node_modules - key: ${{ runner.os }}-bun-${{ hashFiles('bun.lockb') }} + key: ${{ runner.os }}-${{ runner.arch }}-bun-${{ hashFiles('bun.lockb') }} - name: Install dependencies if: steps.cache-deps.outputs.cache-hit != 'true'