From a760f17c1f3eab1c9c25adf0c935b90ddca0d06e Mon Sep 17 00:00:00 2001 From: alexeh Date: Sat, 14 Sep 2024 07:18:36 +0200 Subject: [PATCH] bump action versions --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1742c36c..28e3dd14 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -68,7 +68,7 @@ jobs: - name: Build, tag, and push Client image to Amazon ECR if: ${{ github.event_name == 'workflow_dispatch' || steps.client-changes.outputs.client == 'true' }} - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: build-args: | NEXT_PUBLIC_API_URL=${{ vars.NEXT_PUBLIC_API_URL }} @@ -122,7 +122,7 @@ jobs: - name: Build, tag, and push API image to Amazon ECR if: ${{ github.event_name == 'workflow_dispatch' || steps.api-changes.outputs.api == 'true' }} - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: build-args: | DB_HOST=${{ secrets.DB_HOST }} @@ -203,7 +203,7 @@ jobs: zip -r deploy.zip * .[^.]* - name: Deploy to Amazon EB - uses: einaregilsson/beanstalk-deploy@v21 + uses: einaregilsson/beanstalk-deploy@v22 with: aws_access_key: ${{ secrets.PIPELINE_USER_ACCESS_KEY_ID }} aws_secret_key: ${{ secrets.PIPELINE_USER_SECRET_ACCESS_KEY }}