Dax Raad 3 месяцев назад
Родитель
Сommit
e49a1d1f39
2 измененных файлов с 6 добавлено и 5 удалено
  1. 5 5
      .github/actions/setup-bun/action.yml
  2. 1 0
      bun.lock

+ 5 - 5
.github/actions/setup-bun/action.yml

@@ -3,11 +3,6 @@ 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: Cache ~/.bun
       id: cache-bun
       uses: actions/cache@v4
@@ -17,6 +12,11 @@ runs:
         restore-keys: |
           ${{ runner.os }}-bun-
 
+    - name: Setup Bun
+      uses: oven-sh/setup-bun@v2
+      with:
+        bun-version-file: package.json
+
     - name: Install dependencies
       run: bun install
       shell: bash

+ 1 - 0
bun.lock

@@ -1,5 +1,6 @@
 {
   "lockfileVersion": 1,
+  "configVersion": 0,
   "workspaces": {
     "": {
       "name": "opencode",