Compare commits

..

2 Commits

Author SHA1 Message Date
t.behrendt ab2971f241 ci(renovate): switch to shared bun-npm config (#162)
Reviewed-on: #162
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-08-06 21:08:29 +02:00
t.behrendt f97bed4bb9 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: #163
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-08-06 21:07:35 +02:00
2 changed files with 3 additions and 9 deletions
+1 -1
View File
@@ -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'
+2 -8
View File
@@ -1,13 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>t.behrendt/renovate-configs:common",
"local>t.behrendt/renovate-configs:action"
],
"packageRules": [
{
"matchPackageNames": ["Bun", "oven/bun"],
"groupName": "bun version"
}
"local>t.behrendt/renovate-configs:action",
"local>t.behrendt/renovate-configs:bun-npm"
]
}