From 22936bba327194448c97d81393fff67e1357be56 Mon Sep 17 00:00:00 2001 From: Max Kalashnikoff Date: Thu, 30 May 2024 15:03:05 +0100 Subject: [PATCH] fix(actions): sticking to the tag version instead of master branch in the shared GitHub action --- .github/workflows/cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 0eaf2c2..adcd854 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@v3 - id: deploy-staging - uses: WalletConnect/actions/actions/deploy-terraform/@master + uses: WalletConnect/actions/actions/deploy-terraform/@2.4.3 env: TF_VAR_node_env: staging TF_VAR_supabase_jwt_secret: ${{ secrets.SUPABASE_JWT_SECRET }} @@ -92,7 +92,7 @@ jobs: uses: actions/checkout@v3 - id: deploy-prod - uses: WalletConnect/actions/actions/deploy-terraform/@master + uses: WalletConnect/actions/actions/deploy-terraform/@2.4.3 env: TF_VAR_node_env: production TF_VAR_supabase_jwt_secret: ${{ secrets.SUPABASE_JWT_SECRET }}