From 145869d6eab1138008ca98f49f37550bf4f7b3fd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 02:38:51 +0000 Subject: [PATCH] chore(deps): update oven/bun docker tag to v1.2.1 (#108) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [oven/bun](https://redirect.github.com/oven-sh/bun) | stage | patch | `1.2.0-debian` -> `1.2.1-debian` | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/oven-sh/bun/badge)](https://securityscorecards.dev/viewer/?uri=github.com/oven-sh/bun) | --- ### Release Notes
oven-sh/bun (oven/bun) ### [`v1.2.1`](https://redirect.github.com/oven-sh/bun/releases/tag/bun-v1.2.1): Bun v1.2.1 To install Bun v1.2.1 ```bash curl -fsSL https://bun.sh/install | bash ### or you can use npm ### npm install -g bun ``` Windows: ```bash powershell -c "irm bun.sh/install.ps1|iex" ``` To upgrade to Bun v1.2.1: ```bash bun upgrade ``` ##### [Read Bun v1.2.1's release notes on Bun's blog](https://bun.sh/blog/bun-v1.2.1) ##### Thanks to 16 contributors! - [@​190n](https://redirect.github.com/190n) - [@​alii](https://redirect.github.com/alii) - [@​anaisbetts](https://redirect.github.com/anaisbetts) - [@​andrewbarba](https://redirect.github.com/andrewbarba) - [@​cirospaciari](https://redirect.github.com/cirospaciari) - [@​donisaac](https://redirect.github.com/donisaac) - [@​dylan-conway](https://redirect.github.com/dylan-conway) - [@​heimskr](https://redirect.github.com/heimskr) - [@​inqnuam](https://redirect.github.com/inqnuam) - [@​jarred-sumner](https://redirect.github.com/jarred-sumner) - [@​kory-smith](https://redirect.github.com/kory-smith) - [@​kwaitsing](https://redirect.github.com/kwaitsing) - [@​nektro](https://redirect.github.com/nektro) - [@​pfgithub](https://redirect.github.com/pfgithub) - [@​riskymh](https://redirect.github.com/riskymh) - [@​zackradisic](https://redirect.github.com/zackradisic)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/settlemint/solidity-diamond-bond). ## Summary by Sourcery Chores: - Update oven/bun Docker tag from v1.2.0-debian to v1.2.1-debian. Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2775bd4..2df6d0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:22.13.1 AS build -COPY --from=oven/bun:1.2.0-debian --chmod=0777 /usr/local/bin/bun /bin/bun +COPY --from=oven/bun:1.2.1-debian --chmod=0777 /usr/local/bin/bun /bin/bun ENV BUN_RUNTIME_TRANSPILER_CACHE_PATH=0 ENV BUN_INSTALL_BIN=/bin