From f97bed4bb9167d7ca3c7d4444d16d168f5dce56e Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Thu, 6 Aug 2026 21:07:35 +0200 Subject: [PATCH] ci: include arch in bun dep cache key (#163) Fixes issues like [these](https://gitea.t000-n.de/t.behrendt/ts3gotify/actions/runs/12053/jobs/21922) where the ARM64 runner restores a cache created by an AMD64 runner, which has incorrect binaries for oxfmt/oxlnt. Reviewed-on: https://gitea.t000-n.de/t.behrendt/ts3gotify/pulls/163 Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- .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'