Skip to content

Commit e121323

Browse files
committed
chore: update GitHub Actions workflow for deployment
- Upgraded actions/checkout from v2 to v4 for improved performance. - Replaced Node.js setup with Bun setup using oven-sh/setup-bun@v2. - Updated dependency installation command to use the --frozen-lockfile option for consistency.
1 parent 7c1060d commit e121323

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

16-
- name: Setup Node.js
17-
uses: actions/setup-node@v2
16+
- name: Setup Bun
17+
uses: oven-sh/setup-bun@v2
1818
with:
19-
node-version: '22'
19+
bun-version: latest
2020

2121
- name: Install dependencies
22-
run: bun install
22+
run: bun install --frozen-lockfile
2323

2424
- name: Build project
2525
run: bun run build:prod

0 commit comments

Comments
 (0)