Skip to content

Commit 8bad257

Browse files
fix(deps): update all non-major dependencies
1 parent e0f0c4d commit 8bad257

File tree

5 files changed

+57
-45
lines changed

5 files changed

+57
-45
lines changed

.github/workflows/continuous-delivery.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
needs: [Building]
3535
steps:
3636
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
37-
- uses: akhileshns/heroku-deploy@9fd0f9faae4aa93a38d6f5e25b9128589f1371b0 # v3.12.14
37+
- uses: akhileshns/heroku-deploy@e3eb99d45a8e2ec5dca08735e089607befa4bf28 # v3.14.15
3838
with:
3939
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
4040
heroku_app_name: "radon-dev"
@@ -46,7 +46,7 @@ jobs:
4646
needs: [Building]
4747
steps:
4848
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
49-
- uses: akhileshns/heroku-deploy@9fd0f9faae4aa93a38d6f5e25b9128589f1371b0 # v3.12.14
49+
- uses: akhileshns/heroku-deploy@e3eb99d45a8e2ec5dca08735e089607befa4bf28 # v3.14.15
5050
with:
5151
heroku_api_key: ${{secrets.HEROKU_API_KEY2}}
5252
heroku_app_name: "radon-dev2"

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Uses Bun
1616
uses: oven-sh/setup-bun@v2
1717
with:
18-
bun-version: 1.3.5
18+
bun-version: 1.3.6
1919
- name: Install Dependencies
2020
run: bun install --frozen-lockfile
2121
- name: Run Prettier
@@ -30,7 +30,7 @@ jobs:
3030
- name: Uses Bun
3131
uses: oven-sh/setup-bun@v2
3232
with:
33-
bun-version: 1.3.5
33+
bun-version: 1.3.6
3434
- name: Install Dependencies
3535
run: bun install --frozen-lockfile
3636
- name: TypeCheck

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# ================================
44
# Build Stage
55
# ================================
6-
FROM oven/bun:1.3.5-alpine AS builder
6+
FROM oven/bun:1.3.6-alpine AS builder
77

88
# Set working directory
99
WORKDIR /app
@@ -26,7 +26,7 @@ RUN bunx prisma generate
2626
# ================================
2727
# Development Stage (for local development)
2828
# ================================
29-
FROM oven/bun:1.3.5-alpine AS development
29+
FROM oven/bun:1.3.6-alpine AS development
3030

3131
# Install dumb-init for proper signal handling
3232
RUN apk add --no-cache dumb-init
@@ -71,7 +71,7 @@ CMD ["bun", "dev"]
7171
# ================================
7272
# Production Stage (FINAL - Railway will use this by default)
7373
# ================================
74-
FROM oven/bun:1.3.5-alpine AS production
74+
FROM oven/bun:1.3.6-alpine AS production
7575

7676
# Install dumb-init for proper signal handling
7777
RUN apk add --no-cache dumb-init

0 commit comments

Comments
 (0)