chore: bump bun to v1.3.6

This commit is contained in:
Nicolas Meienberger 2026-01-15 21:59:20 +01:00
parent f4a222aa15
commit 2cbd0d1021
4 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ runs:
- uses: oven-sh/setup-bun@v2
name: Install Bun
with:
bun-version: "1.3.5"
bun-version: "1.3.6"
- name: Install dependencies
shell: bash

View file

@ -1,4 +1,4 @@
ARG BUN_VERSION="1.3.5"
ARG BUN_VERSION="1.3.6"
FROM oven/bun:${BUN_VERSION}-alpine AS base

View file

@ -29,7 +29,7 @@ const listRepositories = async () => {
};
const encryptConfig = async (config: RepositoryConfig): Promise<RepositoryConfig> => {
const encryptedConfig: Record<string, string | boolean | number> = { ...config };
const encryptedConfig: Record<string, unknown> = { ...config };
if (config.customPassword) {
encryptedConfig.customPassword = await cryptoUtils.sealSecret(config.customPassword);

View file

@ -120,5 +120,5 @@
"esbuild": "^0.27.2",
"hono": "^4.11.3"
},
"packageManager": "bun@1.3.5"
"packageManager": "bun@1.3.6"
}