From cf6ca2b764ffed113b0b90fc7e1e7bd831ee6b9e Mon Sep 17 00:00:00 2001 From: Trishant Pahwa Date: Sat, 25 Nov 2023 21:46:12 +0530 Subject: [PATCH] Updated workflow with node version and aws region. --- .github/workflows/lambdas-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lambdas-deploy.yml b/.github/workflows/lambdas-deploy.yml index 69f797c..4044f66 100644 --- a/.github/workflows/lambdas-deploy.yml +++ b/.github/workflows/lambdas-deploy.yml @@ -15,13 +15,13 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: "12" + node-version: "20.x" - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v1 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: us-east-1 + aws-region: ap-south-1 - name: npm install env: CI: true