Skip to content

Commit f4e61af

Browse files
committed
chore: update BUN_VERSION in database migration workflow
- Increased the BUN_VERSION from "1.0.26" to "1.2.15" in the database migrations workflow to utilize the latest features and improvements.
1 parent 4f27ae6 commit f4e61af

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/database-migrations-all.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- '**' # any branch
66
workflow_dispatch: # Allows manual triggering
77
env:
8-
BUN_VERSION: "1.0.26"
8+
BUN_VERSION: "1.2.15"
99
jobs:
1010
migrate:
1111
name: Run Database Migrations
@@ -17,6 +17,8 @@ jobs:
1717
uses: oven-sh/setup-bun@v1
1818
with:
1919
bun-version: ${{ env.BUN_VERSION }}
20+
- name: Install dependencies
21+
run: bun install
2022
- name: Apply database migrations
2123
env:
2224
DATABASE_URL: ${{ secrets.DATABASE_URL_DEV }}

.github/workflows/database-migrations-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66
workflow_dispatch: # Allows manual triggering
77
env:
8-
BUN_VERSION: "1.0.26"
8+
BUN_VERSION: "1.2.15"
99
jobs:
1010
migrate:
1111
name: Run Database Migrations

0 commit comments

Comments
 (0)