Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/auth-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@ on:
paths:
- 'packages/**'
- 'scripts/build.ts'
- 'scripts/check-release-age.ts'
- 'bun.lock'
- 'bunfig.toml'
- 'package.json'
- '.github/workflows/build-packages.yml'
pull_request:
paths:
- 'packages/**'
- 'scripts/build.ts'
- 'scripts/check-release-age.ts'
- 'bun.lock'
- 'bunfig.toml'
- 'package.json'
- '.github/workflows/build-packages.yml'

Expand All @@ -26,7 +32,10 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Check dependency release age
run: bun run security:release-age

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/dependency-release-age.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: dependency-release-age

on:
push:
branches:
- master
paths:
- 'bun.lock'
- 'bunfig.toml'
- 'package.json'
- 'packages/*/package.json'
- 'scripts/check-release-age.ts'
- '.github/workflows/dependency-release-age.yml'
pull_request:
paths:
- 'bun.lock'
- 'bunfig.toml'
- 'package.json'
- 'packages/*/package.json'
- 'scripts/check-release-age.ts'
- '.github/workflows/dependency-release-age.yml'

jobs:
dependency-release-age:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.11

- name: Check dependency release age
run: bun run security:release-age
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/expo-sqlite-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/indexeddb-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Check dependency release age
run: bun run security:release-age

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sqlite-bun-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sqlite3-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.11

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
3 changes: 3 additions & 0 deletions bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[install]
# Only resolve npm package versions that have been available for at least 7 days.
minimumReleaseAge = 604800
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"docs:dev": "vitepress dev packages/docs",
"docs:build": "vitepress build packages/docs",
"docs:preview": "vitepress preview packages/docs",
"security:release-age": "bun scripts/check-release-age.ts",
"format": "prettier . --write",
"format:check": "prettier . --check"
}
Expand Down
Loading
Loading