Skip to content

Commit 233efd6

Browse files
committed
Small fixes
1 parent bdad0fa commit 233efd6

3 files changed

Lines changed: 4 additions & 15 deletions

File tree

.github/workflows/build-edge.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
type=raw,value=${{ env.RUN_TIMESTAMP }}
5151
5252
- name: Build and push backend image
53-
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
53+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
5454
with:
5555
context: ./app
5656
file: ./app/api/Dockerfile
@@ -70,7 +70,7 @@ jobs:
7070
type=raw,value=${{ env.RUN_TIMESTAMP }}
7171
7272
- name: Build and push frontend image
73-
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
73+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
7474
with:
7575
context: ./app/next-client-app
7676
file: ./app/next-client-app/Dockerfile
@@ -90,7 +90,7 @@ jobs:
9090
type=raw,value=${{ env.RUN_TIMESTAMP }}
9191
9292
- name: Build and push Airflow webserver image
93-
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
93+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
9494
with:
9595
context: ./app/airflow
9696
file: ./app/airflow/Dockerfile
@@ -111,7 +111,7 @@ jobs:
111111
type=raw,value=${{ env.RUN_TIMESTAMP }}
112112
113113
- name: Build and push Airflow scheduler image
114-
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
114+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
115115
with:
116116
context: ./app/airflow
117117
file: ./app/airflow/Dockerfile

.github/workflows/deploy.production.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ on:
77
description: 'Image tag to deploy (e.g., v1.2.3, edge, or specific commit SHA)'
88
required: true
99
default: 'edge'
10-
confirm_deployment:
11-
description: 'Confirm you want to deploy to production'
12-
required: true
13-
default: 'false'
14-
type: boolean
1510

1611
env:
1712
app-name: carrot
@@ -25,12 +20,6 @@ jobs:
2520
validate-deployment:
2621
runs-on: ubuntu-latest
2722
steps:
28-
- name: Check deployment confirmation
29-
if: ${{ github.event.inputs.confirm_deployment != 'true' }}
30-
run: |
31-
echo "❌ Deployment not confirmed. Set confirm_deployment to true to proceed."
32-
exit 1
33-
3423
- name: Validate image tag
3524
run: |
3625
if [[ "${{ github.event.inputs.image_tag }}" == "" ]]; then

0 commit comments

Comments
 (0)