From aef53f4a16ee8e2118b0b015678d6c26303b838e Mon Sep 17 00:00:00 2001 From: KubeArchitectBot <139585163+KubeArchitectBot@users.noreply.github.com> Date: Thu, 7 Mar 2024 11:45:25 +0100 Subject: [PATCH] chore(deps): chore(deps) oven-sh/setup-bun action to v1.2.0 (#156) 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 | |---|---|---|---| | [oven-sh/setup-bun](https://togithub.com/oven-sh/setup-bun) | action | minor | `v1.1.1` -> `v1.2.0` | --- ### Release Notes
oven-sh/setup-bun (oven-sh/setup-bun) ### [`v1.2.0`](https://togithub.com/oven-sh/setup-bun/releases/tag/v1.2.0) [Compare Source](https://togithub.com/oven-sh/setup-bun/compare/v1.1.1...v1.2.0) ### setup-bun `v1.2.0` Download, install, and setup [Bun](https://bun.sh) in GitHub Actions. #### Usage ```yaml - uses: oven-sh/setup-bun@v1 with: bun-version: latest ``` ##### Using a custom NPM registry ```yaml - uses: oven-sh/setup-bun@v1 with: registry-url: "https://npm.pkg.github.com/" scope: "@​foo" ``` If you need to authenticate with a private registry, you can set the `BUN_AUTH_TOKEN` environment variable. ```yaml - name: Install Dependencies env: BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: bun install --frozen-lockfile ``` ##### Node.js not needed In most cases, you shouldn't need to use the [setup-node](https://togithub.com/actions/setup-node) GitHub Action. #### Inputs | Name | Description | Default | Examples | | -------------- | -------------------------------------------------- | ----------- | ------------------------------- | | `bun-version` | The version of Bun to download and install. | `latest` | `canary`, `1.0.0`, `1.0.x` | | `registry-url` | Registry URL where some private package is stored. | `undefined` | `"https://npm.pkg.github.com/"` | | `scope` | Scope for private packages. | `undefined` | `"@​foo"`, `"@​orgname"` | | `no-cache` | Disable caching of the downloaded executable. | `false` | `true`, `false` | #### Outputs | Name | Description | Example | | -------------- | ------------------------------------------ | ---------------- | | `cache-hit` | If the Bun executable was read from cache. | `true` | | `bun-version` | The output from `bun --version`. | `1.0.0` | | `bun-revision` | The output from `bun --revision`. | `1.0.0+822a00c4` | #### What's Changed - docs: add explanatory note about setup-node by [@​PaulRBerg](https://togithub.com/PaulRBerg) in [https://github.com/oven-sh/setup-bun/pull/47](https://togithub.com/oven-sh/setup-bun/pull/47) - Add GitHub action to auto-update the v1 tag by [@​jcbhmr](https://togithub.com/jcbhmr) in [https://github.com/oven-sh/setup-bun/pull/53](https://togithub.com/oven-sh/setup-bun/pull/53) - docs: add --frozen-lockfile to README by [@​blimmer](https://togithub.com/blimmer) in [https://github.com/oven-sh/setup-bun/pull/52](https://togithub.com/oven-sh/setup-bun/pull/52) - Fix typo in README.md by [@​starsep](https://togithub.com/starsep) in [https://github.com/oven-sh/setup-bun/pull/57](https://togithub.com/oven-sh/setup-bun/pull/57) - Move cache save to runs.post and exit early by [@​andyexeter](https://togithub.com/andyexeter) in [https://github.com/oven-sh/setup-bun/pull/60](https://togithub.com/oven-sh/setup-bun/pull/60) - Add no-cache option by [@​maschwenk](https://togithub.com/maschwenk) in [https://github.com/oven-sh/setup-bun/pull/58](https://togithub.com/oven-sh/setup-bun/pull/58) #### New Contributors - [@​PaulRBerg](https://togithub.com/PaulRBerg) made their first contribution in [https://github.com/oven-sh/setup-bun/pull/47](https://togithub.com/oven-sh/setup-bun/pull/47) - [@​jcbhmr](https://togithub.com/jcbhmr) made their first contribution in [https://github.com/oven-sh/setup-bun/pull/53](https://togithub.com/oven-sh/setup-bun/pull/53) - [@​blimmer](https://togithub.com/blimmer) made their first contribution in [https://github.com/oven-sh/setup-bun/pull/52](https://togithub.com/oven-sh/setup-bun/pull/52) - [@​starsep](https://togithub.com/starsep) made their first contribution in [https://github.com/oven-sh/setup-bun/pull/57](https://togithub.com/oven-sh/setup-bun/pull/57) - [@​andyexeter](https://togithub.com/andyexeter) made their first contribution in [https://github.com/oven-sh/setup-bun/pull/60](https://togithub.com/oven-sh/setup-bun/pull/60) - [@​maschwenk](https://togithub.com/maschwenk) made their first contribution in [https://github.com/oven-sh/setup-bun/pull/58](https://togithub.com/oven-sh/setup-bun/pull/58) **Full Changelog**: https://github.com/oven-sh/setup-bun/compare/v1...v1.2.0
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). --- .github/workflows/create-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml index 0a5672e..5d5d560 100644 --- a/.github/workflows/create-tag.yml +++ b/.github/workflows/create-tag.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: oven-sh/setup-bun@9b21598af8d4dfc302e5a30250007de0fda92acc # v1.1.1 + - uses: oven-sh/setup-bun@d3603274aca5625baad52ec06108517a089cdd00 # v1.2.0 - uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 id: bun-cache