Skip to content

Commit 2b30e28

Browse files
committed
Update bun installation commands with frozen lockfile option
1 parent dd81b29 commit 2b30e28

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/deploy-pre-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
bun-version: latest
4545

4646
- name: Install dependencies
47-
run: bun install
47+
run: bun install --frozen-lockfile
4848

4949
- name: Run service tests
5050
run: bun run test-services
@@ -95,7 +95,7 @@ jobs:
9595
bun-version: latest
9696
- name: Install vsce
9797
run: bun install -g @vscode/vsce
98-
- run: bun install
98+
- run: bun install --frozen-lockfile
9999
env:
100100
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101101
npm_config_arch: ${{ matrix.npm_config_arch }}

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
bun-version: latest
4545

4646
- name: Install dependencies
47-
run: bun install
47+
run: bun install --frozen-lockfile
4848

4949
- name: Run service tests
5050
run: bun run test-services
@@ -95,7 +95,7 @@ jobs:
9595
bun-version: latest
9696
- name: Install vsce
9797
run: bun install -g @vscode/vsce
98-
- run: bun install
98+
- run: bun install --frozen-lockfile
9999
env:
100100
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101101
npm_config_arch: ${{ matrix.npm_config_arch }}

.github/workflows/redeploy-latest-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
bun-version: latest
1919

2020
- name: Install dependencies
21-
run: bun install
21+
run: bun install --frozen-lockfile
2222

2323
- name: Run service tests
2424
run: bun run test-services
@@ -68,7 +68,7 @@ jobs:
6868
bun-version: latest
6969
- name: Install vsce
7070
run: bun install -g @vscode/vsce
71-
- run: bun install
71+
- run: bun install --frozen-lockfile
7272
env:
7373
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7474
npm_config_arch: ${{ matrix.npm_config_arch }}

0 commit comments

Comments
 (0)