diff options
| author | Dax Raad <[email protected]> | 2026-01-29 19:35:52 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-01-29 19:35:52 -0500 |
| commit | 03803621dbb20d15553635eb810d466dc1255fdc (patch) | |
| tree | f07f0c4d4134638c3eb234243251f6100350ee72 /.github | |
| parent | 81326377f21c92f276ae35f89e8c978da066b7b1 (diff) | |
| download | opencode-03803621dbb20d15553635eb810d466dc1255fdc.tar.gz opencode-03803621dbb20d15553635eb810d466dc1255fdc.zip | |
ci
Diffstat (limited to '.github')
| -rw-r--r-- | .github/actions/setup-bun/action.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/actions/setup-bun/action.yml b/.github/actions/setup-bun/action.yml index 02f215ff1..7584334a7 100644 --- a/.github/actions/setup-bun/action.yml +++ b/.github/actions/setup-bun/action.yml @@ -3,17 +3,17 @@ description: "Setup Bun with caching and install dependencies" runs: using: "composite" steps: - - name: Setup Bun - uses: oven-sh/setup-bun@v2 - with: - bun-version-file: package.json - - name: Mount Bun Cache uses: useblacksmith/stickydisk@v1 with: key: ${{ github.repository }}-bun-cache path: ~/.bun + - name: Setup Bun + uses: oven-sh/setup-bun@v2 + with: + bun-version-file: package.json + - name: Install dependencies run: bun install shell: bash |
