chore: bump bun to v1.3.6
This commit is contained in:
parent
f4a222aa15
commit
2cbd0d1021
4 changed files with 4 additions and 4 deletions
|
|
@ -8,7 +8,7 @@ runs:
|
||||||
- uses: oven-sh/setup-bun@v2
|
- uses: oven-sh/setup-bun@v2
|
||||||
name: Install Bun
|
name: Install Bun
|
||||||
with:
|
with:
|
||||||
bun-version: "1.3.5"
|
bun-version: "1.3.6"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
ARG BUN_VERSION="1.3.5"
|
ARG BUN_VERSION="1.3.6"
|
||||||
|
|
||||||
FROM oven/bun:${BUN_VERSION}-alpine AS base
|
FROM oven/bun:${BUN_VERSION}-alpine AS base
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ const listRepositories = async () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const encryptConfig = async (config: RepositoryConfig): Promise<RepositoryConfig> => {
|
const encryptConfig = async (config: RepositoryConfig): Promise<RepositoryConfig> => {
|
||||||
const encryptedConfig: Record<string, string | boolean | number> = { ...config };
|
const encryptedConfig: Record<string, unknown> = { ...config };
|
||||||
|
|
||||||
if (config.customPassword) {
|
if (config.customPassword) {
|
||||||
encryptedConfig.customPassword = await cryptoUtils.sealSecret(config.customPassword);
|
encryptedConfig.customPassword = await cryptoUtils.sealSecret(config.customPassword);
|
||||||
|
|
|
||||||
|
|
@ -120,5 +120,5 @@
|
||||||
"esbuild": "^0.27.2",
|
"esbuild": "^0.27.2",
|
||||||
"hono": "^4.11.3"
|
"hono": "^4.11.3"
|
||||||
},
|
},
|
||||||
"packageManager": "bun@1.3.5"
|
"packageManager": "bun@1.3.6"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue