google-github-actions / setup-gcloud

A GitHub Action for installing and configuring the gcloud CLI.
https://cloud.google.com/sdk/docs
Apache License 2.0
1.72k stars 509 forks source link

Cloud Run failed to deploy due to deprecated node version #579

Closed greydelta closed 2 years ago

greydelta commented 2 years ago

TL;DR

This github action failed to deploy even after changing checkout@v1 to checkout@v2.

Error message from failed github action:

Annotations
1 error and 1 warning

[Cloud Run Deployment]
Process completed with exit code ***.

[Cloud Run Deployment]
Node.js ***2 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node***6-instead-of-node***2/. Please update the following actions to use Node.js ***6: actions/checkout, google-github-actions/setup-gcloud, actions/checkout

Expected behavior

Cloud run deploys succesfully

Observed behavior

Cloud run failed to deploy

Action YAML

name: deployment

on:
  push:
    branches: [development]

jobs:
  build:
    name: Cloud Run Deployment
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: Setup GCP Service Account
        uses: google-github-actions/setup-gcloud@v0.2.0
        with:
          project_id: ${{ secrets.GCP_PROJECT_ID_DEV }}
          service_account_key: ${{ secrets.GCP_SA_KEY_DEV }}

      - name: Configure Docker
        run: /
          gcloud auth configure-docker

      - name: Add and Write environment file
        run: /
          touch .env
          echo ROOT_URL=${{secrets.ROOT_URL}} >> .env
          echo FRONTEND_URL=${{secrets.FRONTEND_URL}} >> .env
          echo ADMIN_PANEL_URL=${{secrets.ADMIN_PANEL_URL}} >> .env
          echo ADMIN_TOKEN=${{secrets.ADMIN_TOKEN}} >> .env
          echo DATABASE_HOST=${{secrets.DATABASE_HOST}} >> .env
          echo DATABASE_PORT=${{secrets.DATABASE_PORT}} >> .env
          echo DATABASE_NAME=${{secrets.DATABASE_NAME}} >> .env
          echo DATABASE_ADMIN=${{secrets.DATABASE_ADMIN}} >> .env
          echo DATABASE_VISITOR=${{secrets.DATABASE_VISITOR}} >> .env
          echo DATABASE_AUTH_USER=${{secrets.DATABASE_AUTH_USER}} >> .env
          echo DATABASE_AUTH_PASS=${{secrets.DATABASE_AUTH_PASS}} >> .env
          echo DATABASE_URL=${{secrets.DATABASE_URL}} >> .env
          echo CORS_URL=${{secrets.CORS_URL}} >> .env
          echo GOOGLE_KEY=${{secrets.GOOGLE_KEY}} >> .env
          echo GOOGLE_SECRET=${{secrets.GOOGLE_SECRET}} >> .env
          cat .env

      - name: Build
        run: /
          docker build -t gcr.io/${{ secrets.GCP_PROJECT_ID_DEV }}/repo-name-dev:latest -f Dockerfile.development .

      - name: Push
        run: /
          docker push gcr.io/${{ secrets.GCP_PROJECT_ID_DEV }}/repo-name-dev:latest

      - name: Deploy
        run: /
          gcloud run deploy repo-name-dev \
          --project ${{ secrets.GCP_PROJECT_ID_DEV }} \
          --port 3001 \
          --set-env-vars "ROOT_URL=${{ secrets.ROOT_URL }}" \
          --set-env-vars "FRONTEND_URL=${{ secrets.FRONTEND_URL }}" \
          --set-env-vars "ADMIN_PANEL_URL=${{ secrets.ADMIN_PANEL_URL }}" \
          --set-env-vars "ADMIN_TOKEN=${{ secrets.ADMIN_TOKEN }}" \
          --set-env-vars "DATABASE_HOST=${{ secrets.DATABASE_HOST }}" \
          --set-env-vars "DATABASE_PORT=${{ secrets.DATABASE_PORT }}" \
          --set-env-vars "DATABASE_NAME=${{ secrets.DATABASE_NAME }}" \
          --set-env-vars "DATABASE_ADMIN=${{ secrets.DATABASE_ADMIN }}" \
          --set-env-vars "DATABASE_VISITOR=${{ secrets.DATABASE_VISITOR }}" \
          --set-env-vars "DATABASE_AUTH_USER=${{ secrets.DATABASE_AUTH_USER }}" \
          --set-env-vars "DATABASE_AUTH_PASS=${{ secrets.DATABASE_AUTH_PASS }}" \
          --set-env-vars "DATABASE_URL=${{ secrets.DATABASE_URL }}" \
          --set-env-vars "CORS_URL=${{ secrets.CORS_URL }}" \
          --set-env-vars "GOOGLE_KEY=${{ secrets.GOOGLE_KEY }}" \
          --set-env-vars "GOOGLE_SECRET=${{ secrets.GOOGLE_SECRET }}" \
          --region asia-southeast1 \
          --image gcr.io/${{ secrets.GCP_PROJECT_ID_DEV }}/repo-name-dev \
          --platform managed \
          --allow-unauthenticated \
          --service-account ${{ secrets.GCP_SA_EMAIL_DEV }} \
          --min-instances=1 \
          --timeout 5m \
          --quiet

Log output

2022-11-03T07:40:09.4005094Z Requested labels: ubuntu-latest
2022-11-03T07:40:09.4005152Z Job defined at: organization/repo-name/.github/workflows/deployment-development-server.yaml@refs/heads/development
2022-11-03T07:40:09.4005184Z Waiting for a runner to pick up this job...
2022-11-03T07:40:09.7422225Z Job is waiting for a hosted runner to come online.
2022-11-03T07:40:13.6295329Z Job is about to start running on the hosted runner: Hosted Agent (hosted)
2022-11-03T07:40:17.3408218Z Current runner version: '2.298.2'
2022-11-03T07:40:17.3442749Z ##[group]Operating System
2022-11-03T07:40:17.3444062Z Ubuntu
2022-11-03T07:40:17.3444914Z 20.04.5
2022-11-03T07:40:17.3445850Z LTS
2022-11-03T07:40:17.3446752Z ##[endgroup]
2022-11-03T07:40:17.3448067Z ##[group]Runner Image
2022-11-03T07:40:17.3449060Z Image: ubuntu-20.04
2022-11-03T07:40:17.3450157Z Version: 2022***027.***
2022-11-03T07:40:17.3451596Z Included Software: https://github.com/actions/runner-images/blob/ubuntu20/2022***027.***/images/linux/Ubuntu2004-Readme.md
2022-11-03T07:40:17.3453243Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu20%2F2022***027.***
2022-11-03T07:40:17.3454419Z ##[endgroup]
2022-11-03T07:40:17.3455323Z ##[group]Runner Image Provisioner
2022-11-03T07:40:17.3456193Z 2.0.9***.***
2022-11-03T07:40:17.3457045Z ##[endgroup]
2022-11-03T07:40:17.3459180Z ##[group]GITHUB_TOKEN Permissions
2022-11-03T07:40:17.3460393Z Actions: write
2022-11-03T07:40:17.3461387Z Checks: write
2022-11-03T07:40:17.3462296Z Contents: write
2022-11-03T07:40:17.3463110Z Deployments: write
2022-11-03T07:40:17.3464038Z Discussions: write
2022-11-03T07:40:17.3464850Z Issues: write
2022-11-03T07:40:17.3465684Z Metadata: read
2022-11-03T07:40:17.3466551Z Packages: write
2022-11-03T07:40:17.3467634Z Pages: write
2022-11-03T07:40:17.3468709Z PullRequests: write
2022-11-03T07:40:17.3469763Z RepositoryProjects: write
2022-11-03T07:40:17.3470920Z SecurityEvents: write
2022-11-03T07:40:17.3471758Z Statuses: write
2022-11-03T07:40:17.3472608Z ##[endgroup]
2022-11-03T07:40:17.3477381Z Secret source: Actions
2022-11-03T07:40:17.3478764Z Prepare workflow directory
2022-11-03T07:40:17.4364291Z Prepare all required actions
2022-11-03T07:40:17.4566779Z Getting action download info
2022-11-03T07:40:17.7996425Z Download action repository 'actions/checkout@v2' (SHA:e2f20e63***ae6d7dd3b768f56a5d2af784dd5479***)
2022-11-03T07:40:18.5604879Z Download action repository 'google-github-actions/setup-gcloud@v0.2.0' (SHA:94337306dda8***80d967a56932ceb4ddcf0***edae7)
2022-11-03T07:40:19.6310112Z ##[group]Run actions/checkout@v2
2022-11-03T07:40:19.6310860Z with:
2022-11-03T07:40:19.6311945Z   repository: organization/repo-name
2022-11-03T07:40:19.6313212Z   token: ***
2022-11-03T07:40:19.6314112Z   ssh-strict: true
2022-11-03T07:40:19.6315085Z   persist-credentials: true
2022-11-03T07:40:19.6315993Z   clean: true
2022-11-03T07:40:19.6316940Z   fetch-depth: ***
2022-11-03T07:40:19.6317752Z   lfs: false
2022-11-03T07:40:19.6318813Z   submodules: false
2022-11-03T07:40:19.6319559Z   set-safe-directory: true
2022-11-03T07:40:19.6320336Z ##[endgroup]
2022-11-03T07:40:19.9750050Z Syncing repository: organization/repo-name
2022-11-03T07:40:19.9753214Z ##[group]Getting Git version info
2022-11-03T07:40:19.9754641Z Working directory is '/home/runner/work/repo-name/repo-name'
2022-11-03T07:40:19.9757653Z [command]/usr/bin/git version
2022-11-03T07:40:19.9874516Z git version 2.38.***
2022-11-03T07:40:19.9900304Z ##[endgroup]
2022-11-03T07:40:19.9917824Z Temporarily overriding HOME='/home/runner/work/_temp/c8e44704-a2e5-4b50-9d79-dea***ec39d780' before making global git config changes
2022-11-03T07:40:19.9919116Z Adding repository directory to the temporary git global config as a safe directory
2022-11-03T07:40:19.9920681Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/repo-name/repo-name
2022-11-03T07:40:19.9969547Z Deleting the contents of '/home/runner/work/repo-name/repo-name'
2022-11-03T07:40:19.9974729Z ##[group]Initializing the repository
2022-11-03T07:40:19.9978333Z [command]/usr/bin/git init /home/runner/work/repo-name/repo-name
2022-11-03T07:40:20.0074454Z hint: Using 'master' as the name for the initial branch. This default branch name
2022-11-03T07:40:20.0076297Z hint: is subject to change. To configure the initial branch name to use in all
2022-11-03T07:40:20.0078556Z hint: of your new repositories, which will suppress this warning, call:
2022-11-03T07:40:20.0079704Z hint: 
2022-11-03T07:40:20.0081290Z hint:  git config --global init.defaultBranch <name>
2022-11-03T07:40:20.0082278Z hint: 
2022-11-03T07:40:20.0245663Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2022-11-03T07:40:20.0246873Z hint: 'development'. The just-created branch can be renamed via this command:
2022-11-03T07:40:20.0248079Z hint: 
2022-11-03T07:40:20.0248790Z hint:  git branch -m <name>
2022-11-03T07:40:20.0249902Z Initialized empty Git repository in /home/runner/work/repo-name/repo-name/.git/
2022-11-03T07:40:20.0251219Z [command]/usr/bin/git remote add origin https://github.com/organization/repo-name
2022-11-03T07:40:20.0252661Z ##[endgroup]
2022-11-03T07:40:20.0253703Z ##[group]Disabling automatic garbage collection
2022-11-03T07:40:20.0254563Z [command]/usr/bin/git config --local gc.auto 0
2022-11-03T07:40:20.0255635Z ##[endgroup]
2022-11-03T07:40:20.0256607Z ##[group]Setting up auth
2022-11-03T07:40:20.0257581Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-11-03T07:40:20.0293449Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-11-03T07:40:20.0686811Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-11-03T07:40:20.0724971Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2022-11-03T07:40:20.0978013Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2022-11-03T07:40:20.1012751Z ##[endgroup]
2022-11-03T07:40:20.1014317Z ##[group]Fetching the repository
2022-11-03T07:40:20.1023816Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=*** origin +75778330c43cbd9dc7d5bb5080dce5bf8a4823fc:refs/remotes/origin/development
2022-11-03T07:40:20.5556107Z remote: Enumerating objects: ***32, done.        
2022-11-03T07:40:20.5569622Z remote: Counting objects:   0% (***/***32)        
2022-11-03T07:40:20.5619250Z remote: Counting objects:   ***% (2/***32)        
2022-11-03T07:40:20.5620220Z remote: Counting objects:   2% (3/***32)        
2022-11-03T07:40:20.5621147Z remote: Counting objects:   3% (4/***32)        
2022-11-03T07:40:20.5622076Z remote: Counting objects:   4% (6/***32)        
2022-11-03T07:40:20.5622983Z remote: Counting objects:   5% (7/***32)        
2022-11-03T07:40:20.5623900Z remote: Counting objects:   6% (8/***32)        
2022-11-03T07:40:20.5624815Z remote: Counting objects:   7% (***0/***32)        
2022-11-03T07:40:20.5625734Z remote: Counting objects:   8% (***/***32)        
2022-11-03T07:40:20.5626665Z remote: Counting objects:   9% (***2/***32)        
2022-11-03T07:40:20.5627587Z remote: Counting objects:  ***0% (***4/***32)        
2022-11-03T07:40:20.5628602Z remote: Counting objects:  ***% (***5/***32)        
2022-11-03T07:40:20.5629513Z remote: Counting objects:  ***2% (***6/***32)        
2022-11-03T07:40:20.5630445Z remote: Counting objects:  ***3% (***8/***32)        
2022-11-03T07:40:20.5631487Z remote: Counting objects:  ***4% (***9/***32)        
2022-11-03T07:40:20.5632395Z remote: Counting objects:  ***5% (20/***32)        
2022-11-03T07:40:20.5633395Z remote: Counting objects:  ***6% (22/***32)        
2022-11-03T07:40:20.5634288Z remote: Counting objects:  ***7% (23/***32)        
2022-11-03T07:40:20.5635197Z remote: Counting objects:  ***8% (24/***32)        
2022-11-03T07:40:20.5636111Z remote: Counting objects:  ***9% (26/***32)        
2022-11-03T07:40:20.5637042Z remote: Counting objects:  20% (27/***32)        
2022-11-03T07:40:20.5637959Z remote: Counting objects:  2***% (28/***32)        
2022-11-03T07:40:20.5638851Z remote: Counting objects:  22% (30/***32)        
2022-11-03T07:40:20.5639730Z remote: Counting objects:  23% (3***/***32)        
2022-11-03T07:40:20.5640893Z remote: Counting objects:  24% (32/***32)        
2022-11-03T07:40:20.5641805Z remote: Counting objects:  25% (33/***32)        
2022-11-03T07:40:20.5642712Z remote: Counting objects:  26% (35/***32)        
2022-11-03T07:40:20.5643587Z remote: Counting objects:  27% (36/***32)        
2022-11-03T07:40:20.5644502Z remote: Counting objects:  28% (37/***32)        
2022-11-03T07:40:20.5645391Z remote: Counting objects:  29% (39/***32)        
2022-11-03T07:40:20.5646275Z remote: Counting objects:  30% (40/***32)        
2022-11-03T07:40:20.5647339Z remote: Counting objects:  3***% (4***/***32)        
2022-11-03T07:40:20.5648246Z remote: Counting objects:  32% (43/***32)        
2022-11-03T07:40:20.5649137Z remote: Counting objects:  33% (44/***32)        
2022-11-03T07:40:20.5650011Z remote: Counting objects:  34% (45/***32)        
2022-11-03T07:40:20.5650908Z remote: Counting objects:  35% (47/***32)        
2022-11-03T07:40:20.5651792Z remote: Counting objects:  36% (48/***32)        
2022-11-03T07:40:20.5652685Z remote: Counting objects:  37% (49/***32)        
2022-11-03T07:40:20.5653572Z remote: Counting objects:  38% (5***/***32)        
2022-11-03T07:40:20.5654503Z remote: Counting objects:  39% (52/***32)        
2022-11-03T07:40:20.5655389Z remote: Counting objects:  40% (53/***32)        
2022-11-03T07:40:20.5656283Z remote: Counting objects:  4***% (55/***32)        
2022-11-03T07:40:20.5657186Z remote: Counting objects:  42% (56/***32)        
2022-11-03T07:40:20.5658177Z remote: Counting objects:  43% (57/***32)        
2022-11-03T07:40:20.5659074Z remote: Counting objects:  44% (59/***32)        
2022-11-03T07:40:20.5659794Z remote: Counting objects:  45% (60/***32)        
2022-11-03T07:40:20.5660534Z remote: Counting objects:  46% (6***/***32)        
2022-11-03T07:40:20.5661293Z remote: Counting objects:  47% (63/***32)        
2022-11-03T07:40:20.5662035Z remote: Counting objects:  48% (64/***32)        
2022-11-03T07:40:20.5662985Z remote: Counting objects:  49% (65/***32)        
2022-11-03T07:40:20.5663648Z remote: Counting objects:  50% (66/***32)        
2022-11-03T07:40:20.5664311Z remote: Counting objects:  5***% (68/***32)        
2022-11-03T07:40:20.5664963Z remote: Counting objects:  52% (69/***32)        
2022-11-03T07:40:20.5665616Z remote: Counting objects:  53% (70/***32)        
2022-11-03T07:40:20.5666289Z remote: Counting objects:  54% (72/***32)        
2022-11-03T07:40:20.5666949Z remote: Counting objects:  55% (73/***32)        
2022-11-03T07:40:20.5667591Z remote: Counting objects:  56% (74/***32)        
2022-11-03T07:40:20.5668250Z remote: Counting objects:  57% (76/***32)        
2022-11-03T07:40:20.5668905Z remote: Counting objects:  58% (77/***32)        
2022-11-03T07:40:20.5669561Z remote: Counting objects:  59% (78/***32)        
2022-11-03T07:40:20.5670205Z remote: Counting objects:  60% (80/***32)        
2022-11-03T07:40:20.5670864Z remote: Counting objects:  6***% (8***/***32)        
2022-11-03T07:40:20.5671544Z remote: Counting objects:  62% (82/***32)        
2022-11-03T07:40:20.5672194Z remote: Counting objects:  63% (84/***32)        
2022-11-03T07:40:20.5672855Z remote: Counting objects:  64% (85/***32)        
2022-11-03T07:40:20.5673504Z remote: Counting objects:  65% (86/***32)        
2022-11-03T07:40:20.5674177Z remote: Counting objects:  66% (88/***32)        
2022-11-03T07:40:20.5674826Z remote: Counting objects:  67% (89/***32)        
2022-11-03T07:40:20.5675468Z remote: Counting objects:  68% (90/***32)        
2022-11-03T07:40:20.5676121Z remote: Counting objects:  69% (92/***32)        
2022-11-03T07:40:20.5676775Z remote: Counting objects:  70% (93/***32)        
2022-11-03T07:40:20.5677439Z remote: Counting objects:  7***% (94/***32)        
2022-11-03T07:40:20.5678096Z remote: Counting objects:  72% (96/***32)        
2022-11-03T07:40:20.5678757Z remote: Counting objects:  73% (97/***32)        
2022-11-03T07:40:20.5679410Z remote: Counting objects:  74% (98/***32)        
2022-11-03T07:40:20.5680057Z remote: Counting objects:  75% (99/***32)        
2022-11-03T07:40:20.5680853Z remote: Counting objects:  76% (***0***/***32)        
2022-11-03T07:40:20.5681783Z remote: Counting objects:  77% (***02/***32)        
2022-11-03T07:40:20.5682545Z remote: Counting objects:  78% (***03/***32)        
2022-11-03T07:40:20.5683294Z remote: Counting objects:  79% (***05/***32)        
2022-11-03T07:40:20.5684041Z remote: Counting objects:  80% (***06/***32)        
2022-11-03T07:40:20.5685007Z remote: Counting objects:  8***% (***07/***32)        
2022-11-03T07:40:20.5685840Z remote: Counting objects:  82% (***09/***32)        
2022-11-03T07:40:20.5686639Z remote: Counting objects:  83% (***0/***32)        
2022-11-03T07:40:20.5687625Z remote: Counting objects:  84% (***/***32)        
2022-11-03T07:40:20.5688440Z remote: Counting objects:  85% (***3/***32)        
2022-11-03T07:40:20.5689262Z remote: Counting objects:  86% (***4/***32)        
2022-11-03T07:40:20.5690066Z remote: Counting objects:  87% (***5/***32)        
2022-11-03T07:40:20.5690886Z remote: Counting objects:  88% (***7/***32)        
2022-11-03T07:40:20.5691986Z remote: Counting objects:  89% (***8/***32)        
2022-11-03T07:40:20.5692867Z remote: Counting objects:  90% (***9/***32)        
2022-11-03T07:40:20.5693620Z remote: Counting objects:  9***% (***2***/***32)        
2022-11-03T07:40:20.5694389Z remote: Counting objects:  92% (***22/***32)        
2022-11-03T07:40:20.5695145Z remote: Counting objects:  93% (***23/***32)        
2022-11-03T07:40:20.5760462Z remote: Counting objects:  94% (***25/***32)        
2022-11-03T07:40:20.5761330Z remote: Counting objects:  95% (***26/***32)        
2022-11-03T07:40:20.5762161Z remote: Counting objects:  96% (***27/***32)        
2022-11-03T07:40:20.5762993Z remote: Counting objects:  97% (***29/***32)        
2022-11-03T07:40:20.5763821Z remote: Counting objects:  98% (***30/***32)        
2022-11-03T07:40:20.5764722Z remote: Counting objects:  99% (***3***/***32)        
2022-11-03T07:40:20.5765719Z remote: Counting objects: ***00% (***32/***32)        
2022-11-03T07:40:20.5766560Z remote: Counting objects: ***00% (***32/***32), done.        
2022-11-03T07:40:20.5767654Z remote: Compressing objects:   0% (***/***24)        
2022-11-03T07:40:20.5768436Z remote: Compressing objects:   ***% (2/***24)        
2022-11-03T07:40:20.5769226Z remote: Compressing objects:   2% (3/***24)        
2022-11-03T07:40:20.5770015Z remote: Compressing objects:   3% (4/***24)        
2022-11-03T07:40:20.5770780Z remote: Compressing objects:   4% (5/***24)        
2022-11-03T07:40:20.5771776Z remote: Compressing objects:   5% (7/***24)        
2022-11-03T07:40:20.5772602Z remote: Compressing objects:   6% (8/***24)        
2022-11-03T07:40:20.5773421Z remote: Compressing objects:   7% (9/***24)        
2022-11-03T07:40:20.5774250Z remote: Compressing objects:   8% (***0/***24)        
2022-11-03T07:40:20.5775107Z remote: Compressing objects:   9% (***2/***24)        
2022-11-03T07:40:20.5775956Z remote: Compressing objects:  ***0% (***3/***24)        
2022-11-03T07:40:20.5776822Z remote: Compressing objects:  ***% (***4/***24)        
2022-11-03T07:40:20.5777653Z remote: Compressing objects:  ***2% (***5/***24)        
2022-11-03T07:40:20.5778518Z remote: Compressing objects:  ***3% (***7/***24)        
2022-11-03T07:40:20.5779353Z remote: Compressing objects:  ***4% (***8/***24)        
2022-11-03T07:40:20.5780179Z remote: Compressing objects:  ***5% (***9/***24)        
2022-11-03T07:40:20.5780992Z remote: Compressing objects:  ***6% (20/***24)        
2022-11-03T07:40:20.5781838Z remote: Compressing objects:  ***7% (22/***24)        
2022-11-03T07:40:20.5782668Z remote: Compressing objects:  ***8% (23/***24)        
2022-11-03T07:40:20.5783487Z remote: Compressing objects:  ***9% (24/***24)        
2022-11-03T07:40:20.5784281Z remote: Compressing objects:  20% (25/***24)        
2022-11-03T07:40:20.5785121Z remote: Compressing objects:  2***% (27/***24)        
2022-11-03T07:40:20.5785969Z remote: Compressing objects:  22% (28/***24)        
2022-11-03T07:40:20.5786960Z remote: Compressing objects:  23% (29/***24)        
2022-11-03T07:40:20.5787798Z remote: Compressing objects:  24% (30/***24)        
2022-11-03T07:40:20.5788643Z remote: Compressing objects:  25% (3***/***24)        
2022-11-03T07:40:20.5789476Z remote: Compressing objects:  26% (33/***24)        
2022-11-03T07:40:20.5790294Z remote: Compressing objects:  27% (34/***24)        
2022-11-03T07:40:20.5791143Z remote: Compressing objects:  28% (35/***24)        
2022-11-03T07:40:20.5791978Z remote: Compressing objects:  29% (36/***24)        
2022-11-03T07:40:20.5792808Z remote: Compressing objects:  30% (38/***24)        
2022-11-03T07:40:20.5793622Z remote: Compressing objects:  3***% (39/***24)        
2022-11-03T07:40:20.5794454Z remote: Compressing objects:  32% (40/***24)        
2022-11-03T07:40:20.5795291Z remote: Compressing objects:  33% (4***/***24)        
2022-11-03T07:40:20.5796136Z remote: Compressing objects:  34% (43/***24)        
2022-11-03T07:40:20.5797150Z remote: Compressing objects:  35% (44/***24)        
2022-11-03T07:40:20.5797942Z remote: Compressing objects:  36% (45/***24)        
2022-11-03T07:40:20.5798750Z remote: Compressing objects:  37% (46/***24)        
2022-11-03T07:40:20.5799425Z remote: Compressing objects:  38% (48/***24)        
2022-11-03T07:40:20.5800116Z remote: Compressing objects:  39% (49/***24)        
2022-11-03T07:40:20.5801048Z remote: Compressing objects:  40% (50/***24)        
2022-11-03T07:40:20.5801832Z remote: Compressing objects:  4***% (5***/***24)        
2022-11-03T07:40:20.5802599Z remote: Compressing objects:  42% (53/***24)        
2022-11-03T07:40:20.5803371Z remote: Compressing objects:  43% (54/***24)        
2022-11-03T07:40:20.5804145Z remote: Compressing objects:  44% (55/***24)        
2022-11-03T07:40:20.5821802Z remote: Compressing objects:  45% (56/***24)        
2022-11-03T07:40:20.5822618Z remote: Compressing objects:  46% (58/***24)        
2022-11-03T07:40:20.5823576Z remote: Compressing objects:  47% (59/***24)        
2022-11-03T07:40:20.5824386Z remote: Compressing objects:  48% (60/***24)        
2022-11-03T07:40:20.5825176Z remote: Compressing objects:  49% (6***/***24)        
2022-11-03T07:40:20.5825945Z remote: Compressing objects:  50% (62/***24)        
2022-11-03T07:40:20.5826724Z remote: Compressing objects:  5***% (64/***24)        
2022-11-03T07:40:20.5827511Z remote: Compressing objects:  52% (65/***24)        
2022-11-03T07:40:20.5828306Z remote: Compressing objects:  53% (66/***24)        
2022-11-03T07:40:20.5829066Z remote: Compressing objects:  54% (67/***24)        
2022-11-03T07:40:20.5829926Z remote: Compressing objects:  55% (69/***24)        
2022-11-03T07:40:20.5830622Z remote: Compressing objects:  56% (70/***24)        
2022-11-03T07:40:20.5831298Z remote: Compressing objects:  57% (7***/***24)        
2022-11-03T07:40:20.5831987Z remote: Compressing objects:  58% (72/***24)        
2022-11-03T07:40:20.5832667Z remote: Compressing objects:  59% (74/***24)        
2022-11-03T07:40:20.5833369Z remote: Compressing objects:  60% (75/***24)        
2022-11-03T07:40:20.5834039Z remote: Compressing objects:  6***% (76/***24)        
2022-11-03T07:40:20.5834785Z remote: Compressing objects:  62% (77/***24)        
2022-11-03T07:40:20.5835396Z remote: Compressing objects:  63% (79/***24)        
2022-11-03T07:40:20.5836005Z remote: Compressing objects:  64% (80/***24)        
2022-11-03T07:40:20.5836591Z remote: Compressing objects:  65% (8***/***24)        
2022-11-03T07:40:20.5837200Z remote: Compressing objects:  66% (82/***24)        
2022-11-03T07:40:20.5837804Z remote: Compressing objects:  67% (84/***24)        
2022-11-03T07:40:20.5838400Z remote: Compressing objects:  68% (85/***24)        
2022-11-03T07:40:20.5838995Z remote: Compressing objects:  69% (86/***24)        
2022-11-03T07:40:20.5839607Z remote: Compressing objects:  70% (87/***24)        
2022-11-03T07:40:20.5840404Z remote: Compressing objects:  7***% (89/***24)        
2022-11-03T07:40:20.5841305Z remote: Compressing objects:  72% (90/***24)        
2022-11-03T07:40:20.5842251Z remote: Compressing objects:  73% (9***/***24)        
2022-11-03T07:40:20.5843077Z remote: Compressing objects:  74% (92/***24)        
2022-11-03T07:40:20.5843906Z remote: Compressing objects:  75% (93/***24)        
2022-11-03T07:40:20.5844725Z remote: Compressing objects:  76% (95/***24)        
2022-11-03T07:40:20.5845558Z remote: Compressing objects:  77% (96/***24)        
2022-11-03T07:40:20.5846394Z remote: Compressing objects:  78% (97/***24)        
2022-11-03T07:40:20.5869196Z remote: Compressing objects:  79% (98/***24)        
2022-11-03T07:40:20.5870155Z remote: Compressing objects:  80% (***00/***24)        
2022-11-03T07:40:20.5871077Z remote: Compressing objects:  8***% (***0***/***24)        
2022-11-03T07:40:20.5871888Z remote: Compressing objects:  82% (***02/***24)        
2022-11-03T07:40:20.5872681Z remote: Compressing objects:  83% (***03/***24)        
2022-11-03T07:40:20.5873483Z remote: Compressing objects:  84% (***05/***24)        
2022-11-03T07:40:20.5874287Z remote: Compressing objects:  85% (***06/***24)        
2022-11-03T07:40:20.5875086Z remote: Compressing objects:  86% (***07/***24)        
2022-11-03T07:40:20.5875850Z remote: Compressing objects:  87% (***08/***24)        
2022-11-03T07:40:20.5876637Z remote: Compressing objects:  88% (***0/***24)        
2022-11-03T07:40:20.5877427Z remote: Compressing objects:  89% (***/***24)        
2022-11-03T07:40:20.5878228Z remote: Compressing objects:  90% (***2/***24)        
2022-11-03T07:40:20.5879008Z remote: Compressing objects:  9***% (***3/***24)        
2022-11-03T07:40:20.5879838Z remote: Compressing objects:  92% (***5/***24)        
2022-11-03T07:40:20.5880610Z remote: Compressing objects:  93% (***6/***24)        
2022-11-03T07:40:20.5881469Z remote: Compressing objects:  94% (***7/***24)        
2022-11-03T07:40:20.5882275Z remote: Compressing objects:  95% (***8/***24)        
2022-11-03T07:40:20.5882875Z remote: Compressing objects:  96% (***20/***24)        
2022-11-03T07:40:20.5883650Z remote: Compressing objects:  97% (***2***/***24)        
2022-11-03T07:40:20.5884273Z remote: Compressing objects:  98% (***22/***24)        
2022-11-03T07:40:20.5884885Z remote: Compressing objects:  99% (***23/***24)        
2022-11-03T07:40:20.5885495Z remote: Compressing objects: ***00% (***24/***24)        
2022-11-03T07:40:20.5886126Z remote: Compressing objects: ***00% (***24/***24), done.        
2022-11-03T07:40:20.5955174Z Receiving objects:   0% (***/***32)
2022-11-03T07:40:20.5957752Z Receiving objects:   ***% (2/***32)
2022-11-03T07:40:20.5958548Z Receiving objects:   2% (3/***32)
2022-11-03T07:40:20.5960334Z Receiving objects:   3% (4/***32)
2022-11-03T07:40:20.5961088Z Receiving objects:   4% (6/***32)
2022-11-03T07:40:20.5962771Z Receiving objects:   5% (7/***32)
2022-11-03T07:40:20.5965515Z Receiving objects:   6% (8/***32)
2022-11-03T07:40:20.5967317Z Receiving objects:   7% (***0/***32)
2022-11-03T07:40:20.5970726Z Receiving objects:   8% (***/***32)
2022-11-03T07:40:20.5972335Z Receiving objects:   9% (***2/***32)
2022-11-03T07:40:20.5973925Z Receiving objects:  ***0% (***4/***32)
2022-11-03T07:40:20.5975535Z Receiving objects:  ***% (***5/***32)
2022-11-03T07:40:20.5978922Z Receiving objects:  ***2% (***6/***32)
2022-11-03T07:40:20.5982277Z Receiving objects:  ***3% (***8/***32)
2022-11-03T07:40:20.5982980Z Receiving objects:  ***4% (***9/***32)
2022-11-03T07:40:20.5983687Z Receiving objects:  ***5% (20/***32)
2022-11-03T07:40:20.5984359Z Receiving objects:  ***6% (22/***32)
2022-11-03T07:40:20.5985060Z Receiving objects:  ***7% (23/***32)
2022-11-03T07:40:20.5985784Z Receiving objects:  ***8% (24/***32)
2022-11-03T07:40:20.5986401Z Receiving objects:  ***9% (26/***32)
2022-11-03T07:40:20.5986999Z Receiving objects:  20% (27/***32)
2022-11-03T07:40:20.5987606Z Receiving objects:  2***% (28/***32)
2022-11-03T07:40:20.6120565Z Receiving objects:  22% (30/***32)
2022-11-03T07:40:20.6121376Z Receiving objects:  23% (3***/***32)
2022-11-03T07:40:20.6122314Z Receiving objects:  24% (32/***32)
2022-11-03T07:40:20.6123129Z Receiving objects:  25% (33/***32)
2022-11-03T07:40:20.6123816Z Receiving objects:  26% (35/***32)
2022-11-03T07:40:20.6124487Z Receiving objects:  27% (36/***32)
2022-11-03T07:40:20.6125152Z Receiving objects:  28% (37/***32)
2022-11-03T07:40:20.6125813Z Receiving objects:  29% (39/***32)
2022-11-03T07:40:20.6126465Z Receiving objects:  30% (40/***32)
2022-11-03T07:40:20.6182028Z Receiving objects:  3***% (4***/***32)
2022-11-03T07:40:20.6182788Z Receiving objects:  32% (43/***32)
2022-11-03T07:40:20.6183671Z Receiving objects:  33% (44/***32)
2022-11-03T07:40:20.6184395Z Receiving objects:  34% (45/***32)
2022-11-03T07:40:20.6185207Z Receiving objects:  35% (47/***32)
2022-11-03T07:40:20.7041640Z Receiving objects:  36% (48/***32)
2022-11-03T07:40:20.7043010Z Receiving objects:  37% (49/***32)
2022-11-03T07:40:20.7044339Z Receiving objects:  38% (5***/***32)
2022-11-03T07:40:20.7045630Z Receiving objects:  39% (52/***32)
2022-11-03T07:40:20.7046928Z Receiving objects:  40% (53/***32)
2022-11-03T07:40:20.7048434Z Receiving objects:  4***% (55/***32)
2022-11-03T07:40:20.7049710Z Receiving objects:  42% (56/***32)
2022-11-03T07:40:20.7050973Z Receiving objects:  43% (57/***32)
2022-11-03T07:40:20.7052199Z Receiving objects:  44% (59/***32)
2022-11-03T07:40:20.7053425Z Receiving objects:  45% (60/***32)
2022-11-03T07:40:20.7054655Z Receiving objects:  46% (6***/***32)
2022-11-03T07:40:20.7055904Z Receiving objects:  47% (63/***32)
2022-11-03T07:40:20.7057111Z Receiving objects:  48% (64/***32)
2022-11-03T07:40:20.7058365Z Receiving objects:  49% (65/***32)
2022-11-03T07:40:20.7059588Z Receiving objects:  50% (66/***32)
2022-11-03T07:40:20.7060852Z Receiving objects:  5***% (68/***32)
2022-11-03T07:40:20.7062105Z Receiving objects:  52% (69/***32)
2022-11-03T07:40:20.7222028Z Receiving objects:  53% (70/***32)
2022-11-03T07:40:20.7223094Z Receiving objects:  54% (72/***32)
2022-11-03T07:40:20.7223928Z Receiving objects:  55% (73/***32)
2022-11-03T07:40:20.7224765Z Receiving objects:  56% (74/***32)
2022-11-03T07:40:20.7225458Z Receiving objects:  57% (76/***32)
2022-11-03T07:40:20.7226123Z Receiving objects:  58% (77/***32)
2022-11-03T07:40:20.7226803Z Receiving objects:  59% (78/***32)
2022-11-03T07:40:20.7227468Z Receiving objects:  60% (80/***32)
2022-11-03T07:40:20.7228140Z Receiving objects:  6***% (8***/***32)
2022-11-03T07:40:20.7228835Z Receiving objects:  62% (82/***32)
2022-11-03T07:40:20.7229506Z Receiving objects:  63% (84/***32)
2022-11-03T07:40:20.7230179Z Receiving objects:  64% (85/***32)
2022-11-03T07:40:20.7230837Z Receiving objects:  65% (86/***32)
2022-11-03T07:40:20.7231497Z Receiving objects:  66% (88/***32)
2022-11-03T07:40:20.7232157Z Receiving objects:  67% (89/***32)
2022-11-03T07:40:20.7232804Z Receiving objects:  68% (90/***32)
2022-11-03T07:40:20.7233460Z Receiving objects:  69% (92/***32)
2022-11-03T07:40:20.7234212Z Receiving objects:  70% (93/***32)
2022-11-03T07:40:20.7234834Z Receiving objects:  7***% (94/***32)
2022-11-03T07:40:20.7235474Z Receiving objects:  72% (96/***32)
2022-11-03T07:40:20.7236095Z Receiving objects:  73% (97/***32)
2022-11-03T07:40:20.7236714Z Receiving objects:  74% (98/***32)
2022-11-03T07:40:20.7237321Z Receiving objects:  75% (99/***32)
2022-11-03T07:40:20.7237959Z Receiving objects:  76% (***0***/***32)
2022-11-03T07:40:20.7238625Z Receiving objects:  77% (***02/***32)
2022-11-03T07:40:20.7239258Z Receiving objects:  78% (***03/***32)
2022-11-03T07:40:20.7239907Z Receiving objects:  79% (***05/***32)
2022-11-03T07:40:20.7240543Z Receiving objects:  80% (***06/***32)
2022-11-03T07:40:20.7277525Z Receiving objects:  8***% (***07/***32)
2022-11-03T07:40:20.7279418Z Receiving objects:  82% (***09/***32)
2022-11-03T07:40:20.7280800Z Receiving objects:  83% (***0/***32)
2022-11-03T07:40:20.7282110Z Receiving objects:  84% (***/***32)
2022-11-03T07:40:20.7283367Z Receiving objects:  85% (***3/***32)
2022-11-03T07:40:20.7284639Z Receiving objects:  86% (***4/***32)
2022-11-03T07:40:20.7285918Z Receiving objects:  87% (***5/***32)
2022-11-03T07:40:20.7304241Z remote: Total ***32 (delta ***), reused 66 (delta 4), pack-reused 0        
2022-11-03T07:40:20.7305132Z Receiving objects:  88% (***7/***32)
2022-11-03T07:40:20.7305878Z Receiving objects:  89% (***8/***32)
2022-11-03T07:40:20.7306626Z Receiving objects:  90% (***9/***32)
2022-11-03T07:40:20.7307356Z Receiving objects:  9***% (***2***/***32)
2022-11-03T07:40:20.7308097Z Receiving objects:  92% (***22/***32)
2022-11-03T07:40:20.7308836Z Receiving objects:  93% (***23/***32)
2022-11-03T07:40:20.7309557Z Receiving objects:  94% (***25/***32)
2022-11-03T07:40:20.7310290Z Receiving objects:  95% (***26/***32)
2022-11-03T07:40:20.7311013Z Receiving objects:  96% (***27/***32)
2022-11-03T07:40:20.7311832Z Receiving objects:  97% (***29/***32)
2022-11-03T07:40:20.7312486Z Receiving objects:  98% (***30/***32)
2022-11-03T07:40:20.7313161Z Receiving objects:  99% (***3***/***32)
2022-11-03T07:40:20.7313855Z Receiving objects: ***00% (***32/***32)
2022-11-03T07:40:20.7314657Z Receiving objects: ***00% (***32/***32), 382.57 KiB | 2.83 MiB/s, done.
2022-11-03T07:40:20.7315390Z Resolving deltas:   0% (0/***)
2022-11-03T07:40:20.7316059Z Resolving deltas:   9% (***/***)
2022-11-03T07:40:20.7316730Z Resolving deltas:  ***8% (2/***)
2022-11-03T07:40:20.7317398Z Resolving deltas:  27% (3/***)
2022-11-03T07:40:20.7318062Z Resolving deltas:  36% (4/***)
2022-11-03T07:40:20.7318717Z Resolving deltas:  45% (5/***)
2022-11-03T07:40:20.7319352Z Resolving deltas:  54% (6/***)
2022-11-03T07:40:20.7319999Z Resolving deltas:  63% (7/***)
2022-11-03T07:40:20.7320859Z Resolving deltas:  72% (8/***)
2022-11-03T07:40:20.7321544Z Resolving deltas:  8***% (9/***)
2022-11-03T07:40:20.7322264Z Resolving deltas:  90% (***0/***)
2022-11-03T07:40:20.7322988Z Resolving deltas: ***00% (***/***)
2022-11-03T07:40:20.7323723Z Resolving deltas: ***00% (***/***), done.
2022-11-03T07:40:20.7393789Z From https://github.com/organization/repo-name
2022-11-03T07:40:20.7394940Z  * [new ref]         75778330c43cbd9dc7d5bb5080dce5bf8a4823fc -> origin/development
2022-11-03T07:40:20.7415861Z ##[endgroup]
2022-11-03T07:40:20.7416939Z ##[group]Determining the checkout info
2022-11-03T07:40:20.7422594Z ##[endgroup]
2022-11-03T07:40:20.7423587Z ##[group]Checking out the ref
2022-11-03T07:40:20.7424749Z [command]/usr/bin/git checkout --progress --force -B development refs/remotes/origin/development
2022-11-03T07:40:20.7552837Z Switched to a new branch 'development'
2022-11-03T07:40:20.7557889Z branch 'development' set up to track 'origin/development'.
2022-11-03T07:40:20.7560279Z ##[endgroup]
2022-11-03T07:40:20.7629288Z [command]/usr/bin/git log -*** --format='%H'
2022-11-03T07:40:20.7660595Z '75778330c43cbd9dc7d5bb5080dce5bf8a4823fc'
2022-11-03T07:40:20.8052239Z ##[group]Run google-github-actions/setup-gcloud@v0.2.0
2022-11-03T07:40:20.8052966Z with:
2022-11-03T07:40:20.8053612Z   project_id: ***
2022-11-03T07:40:20.8061986Z   service_account_key: ***

2022-11-03T07:40:20.8062629Z   version: latest
2022-11-03T07:40:20.8063313Z   export_default_credentials: false
2022-11-03T07:40:20.8063888Z ##[endgroup]
2022-11-03T07:40:21.9953252Z [command]/usr/bin/tar xz --warning=no-unknown-keyword -C /home/runner/work/_temp/69cb88c6-6a83-4ae6-8c***f-2d47***06dd6f0 -f /home/runner/work/_temp/a24ccd83-85***9-44a8-a058-80f8fa996922
2022-11-03T07:40:38.7475254Z [command]/opt/hostedtoolcache/gcloud/408.0.***/x64/bin/gcloud --quiet config set project ***
2022-11-03T07:40:41.4249843Z Updated property [core/project].
2022-11-03T07:40:41.6384310Z Successfully set default project
2022-11-03T07:40:41.6394613Z [command]/opt/hostedtoolcache/gcloud/408.0.***/x64/bin/gcloud --quiet auth activate-service-account *** --key-file -
2022-11-03T07:40:42.3735541Z Activated service account credentials for: [***]
2022-11-03T07:40:42.4914914Z ##[group]Run gcloud auth configure-docker
2022-11-03T07:40:42.4916003Z [36;***mgcloud auth configure-docker
2022-11-03T07:40:42.4982748Z shell: /usr/bin/bash -e ***0***
2022-11-03T07:40:42.4983404Z env:
2022-11-03T07:40:42.4984319Z   CLOUDSDK_METRICS_ENVIRONMENT: github-actions-setup-gcloud
2022-11-03T07:40:42.4985069Z ##[endgroup]
2022-11-03T07:40:43.3323072Z Adding credentials for all GCR repositories.
2022-11-03T07:40:43.3324910Z WARNING: A long list of credential helpers may cause delays running 'docker build'. We recommend passing the registry name to configure only the registry you are using.
2022-11-03T07:40:43.3326232Z After update, the following will be written to your Docker config file located 
2022-11-03T07:40:43.3327391Z at [/home/runner/.docker/config.json]:
2022-11-03T07:40:43.3328195Z  ***
2022-11-03T07:40:43.3328875Z   "credHelpers": ***
2022-11-03T07:40:43.3329566Z     "gcr.io": "gcloud",
2022-11-03T07:40:43.3330366Z     "us.gcr.io": "gcloud",
2022-11-03T07:40:43.3331306Z     "eu.gcr.io": "gcloud",
2022-11-03T07:40:43.3332013Z     "asia.gcr.io": "gcloud",
2022-11-03T07:40:43.3340904Z     "staging-k8s.gcr.io": "gcloud",
2022-11-03T07:40:43.3341719Z     "marketplace.gcr.io": "gcloud"
2022-11-03T07:40:43.3344193Z   ***
2022-11-03T07:40:43.3344812Z ***
2022-11-03T07:40:43.3345139Z 
2022-11-03T07:40:43.3345464Z Do you want to continue (Y/n)?  
2022-11-03T07:40:43.3632329Z Docker configuration file updated.
2022-11-03T07:40:43.4769417Z ##[group]Run touch .env
2022-11-03T07:40:43.4770320Z [36;***mtouch .env
2022-11-03T07:40:43.4771216Z [36;***mecho ROOT_URL=*** >> .env
2022-11-03T07:40:43.4772117Z [36;***mecho FRONTEND_URL=*** >> .env
2022-11-03T07:40:43.4773081Z [36;***mecho ADMIN_PANEL_URL=*** >> .env
2022-11-03T07:40:43.4773842Z [36;***mecho ADMIN_TOKEN=*** >> .env
2022-11-03T07:40:43.4774690Z [36;***mecho DATABASE_HOST=*** >> .env
2022-11-03T07:40:43.4775408Z [36;***mecho DATABASE_PORT=*** >> .env
2022-11-03T07:40:43.4776150Z [36;***mecho DATABASE_NAME=*** >> .env
2022-11-03T07:40:43.4776887Z [36;***mecho DATABASE_ADMIN=*** >> .env
2022-11-03T07:40:43.4777643Z [36;***mecho DATABASE_VISITOR=*** >> .env
2022-11-03T07:40:43.4778403Z [36;***mecho DATABASE_AUTH_USER=*** >> .env
2022-11-03T07:40:43.4779199Z [36;***mecho DATABASE_AUTH_PASS=*** >> .env
2022-11-03T07:40:43.4780319Z [36;***mecho DATABASE_URL=*** >> .env
2022-11-03T07:40:43.4781043Z [36;***mecho CORS_URL= >> .env
2022-11-03T07:40:43.4791702Z [36;***mecho GOOGLE_KEY=*** >> .env
2022-11-03T07:40:43.4792397Z [36;***mecho GOOGLE_SECRET=***
2022-11-03T07:40:43.4792966Z [36;***m >> .env
2022-11-03T07:40:43.4802661Z [36;***mcat .env
2022-11-03T07:40:43.4857204Z shell: /usr/bin/bash -e ***0***
2022-11-03T07:40:43.4857773Z env:
2022-11-03T07:40:43.4858403Z   CLOUDSDK_METRICS_ENVIRONMENT: github-actions-setup-gcloud
2022-11-03T07:40:43.4859051Z ##[endgroup]
2022-11-03T07:40:43.4972243Z GOOGLE_SECRET=***
2022-11-03T07:40:43.4983487Z ROOT_URL=***
2022-11-03T07:40:43.4984290Z FRONTEND_URL=***
2022-11-03T07:40:43.4985102Z ADMIN_PANEL_URL=***
2022-11-03T07:40:43.4985680Z ADMIN_TOKEN=***
2022-11-03T07:40:43.4986319Z DATABASE_HOST=***
2022-11-03T07:40:43.4986843Z DATABASE_PORT=***
2022-11-03T07:40:43.4987389Z DATABASE_NAME=***
2022-11-03T07:40:43.4987919Z DATABASE_ADMIN=***
2022-11-03T07:40:43.4988475Z DATABASE_VISITOR=***
2022-11-03T07:40:43.4989031Z DATABASE_AUTH_USER=***
2022-11-03T07:40:43.4989601Z DATABASE_AUTH_PASS=***
2022-11-03T07:40:43.4990513Z DATABASE_URL=***
2022-11-03T07:40:43.4991007Z CORS_URL=
2022-11-03T07:40:43.5000634Z GOOGLE_KEY=***
2022-11-03T07:40:43.5048782Z ##[group]Run docker build -t gcr.io/***/repo-name-dev:latest -f Dockerfile.development .
2022-11-03T07:40:43.5050037Z [36;***mdocker build -t gcr.io/***/repo-name-dev:latest -f Dockerfile.development .
2022-11-03T07:40:43.5093104Z shell: /usr/bin/bash -e ***0***
2022-11-03T07:40:43.5093664Z env:
2022-11-03T07:40:43.5094284Z   CLOUDSDK_METRICS_ENVIRONMENT: github-actions-setup-gcloud
2022-11-03T07:40:43.5094935Z ##[endgroup]
2022-11-03T07:40:47.7776258Z Sending build context to Docker daemon  ***.387MB
2022-11-03T07:40:47.7776852Z 
2022-11-03T07:40:47.7846757Z Step ***/9 : FROM node:***6-alpine3.***4
2022-11-03T07:40:48.5811093Z ***6-alpine3.***4: Pulling from library/node
2022-11-03T07:40:48.7799469Z 8663204ce***3b: Pulling fs layer
2022-11-03T07:40:48.7801775Z d***9b***3245430: Pulling fs layer
2022-11-03T07:40:48.7803917Z e4a0f03ce8f3: Pulling fs layer
2022-11-03T07:40:48.7805272Z e3***9ab3d00f8: Pulling fs layer
2022-11-03T07:40:48.7806582Z e3***9ab3d00f8: Waiting
2022-11-03T07:40:49.0626167Z e4a0f03ce8f3: Verifying Checksum
2022-11-03T07:40:49.0627198Z e4a0f03ce8f3: Download complete
2022-11-03T07:40:49.0689709Z 8663204ce***3b: Verifying Checksum
2022-11-03T07:40:49.0742053Z 8663204ce***3b: Download complete
2022-11-03T07:40:49.2867149Z d***9b***3245430: Verifying Checksum
2022-11-03T07:40:49.2867912Z d***9b***3245430: Download complete
2022-11-03T07:40:49.2907151Z e3***9ab3d00f8: Verifying Checksum
2022-11-03T07:40:49.2908106Z e3***9ab3d00f8: Download complete
2022-11-03T07:40:49.2956425Z 8663204ce***3b: Pull complete
2022-11-03T07:40:51.0790336Z d***9b***3245430: Pull complete
2022-11-03T07:40:51.2232315Z e4a0f03ce8f3: Pull complete
2022-11-03T07:40:51.2819815Z e3***9ab3d00f8: Pull complete
2022-11-03T07:40:51.2864681Z Digest: sha256:889***39aa824c8b9dd29938eecfd300d5***fc2e984f9cd03df39***bcfbe9cf***0b53
2022-11-03T07:40:51.2886919Z Status: Downloaded newer image for node:***6-alpine3.***4
2022-11-03T07:40:51.2903941Z  ---> 2680430c***9d
2022-11-03T07:40:51.2904793Z Step 2/9 : ENV HOST 0.0.0.0
2022-11-03T07:40:51.3115105Z  ---> Running in 0a3a848d6858
2022-11-03T07:40:52.0203793Z Removing intermediate container 0a3a848d6858
2022-11-03T07:40:52.0204963Z  ---> f559cbe***e33b
2022-11-03T07:40:52.0205745Z Step 3/9 : ENV PORT 300***
2022-11-03T07:40:52.0462244Z  ---> Running in 78ac493fee0e
2022-11-03T07:40:53.0181481Z Removing intermediate container 78ac493fee0e
2022-11-03T07:40:53.0182489Z  ---> 657389432df0
2022-11-03T07:40:53.0183318Z Step 4/9 : WORKDIR /usr/src/app
2022-11-03T07:40:53.0533987Z  ---> Running in 562e4058e39f
2022-11-03T07:40:54.0189310Z Removing intermediate container 562e4058e39f
2022-11-03T07:40:54.0190204Z  ---> 554c78a5c8a9
2022-11-03T07:40:54.0190792Z Step 5/9 : COPY package*.json ./
2022-11-03T07:40:55.0212245Z  ---> 89e23a29d76a
2022-11-03T07:40:55.0212939Z Step 6/9 : RUN npm ci
2022-11-03T07:40:55.0482380Z  ---> Running in 737ab272f779
2022-11-03T07:41:10.5970612Z [9***mnpm[9***m WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3***42
2022-11-03T07:41:11.8687203Z [9***mnpm WARN deprecated har-validator@5.***.5: this library is no longer supported
2022-11-03T07:41:12.2945192Z [9***mnpm WARN deprecated fastify-warning@0.2.0: This module renamed to process-warning
2022-11-03T07:41:13.0061744Z [9***mnpm WARN deprecated subscriptions-transport-ws@0.9.***9: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws    For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
2022-11-03T07:41:13.9497092Z [9***mnpm[9***m [9***mWARN[9***m [9***mdeprecated[9***m puppeteer@2.0.0: Version no longer supported. Upgrade to @latest
2022-11-03T07:41:14.9244891Z [9***mnpm WARN deprecated @types/bson@4.2.0: This is a stub types definition. bson provides its own type definitions, so you do not need this installed.
2022-11-03T07:41:18.1726935Z [9***mnpm[9***m [9***mWARN deprecated uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
2022-11-03T07:41:20.7691408Z [9***mnpm WARN deprecated tslint@6.***.3: TSLint has been deprecated in favor of ESLint. Please see https://github.com/palantir/tslint/issues/4534 for more information.
2022-11-03T07:41:21.6108906Z [9***mnpm WARN deprecated core-js@2.6.***2: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to ***00x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
2022-11-03T07:41:29.8978389Z 
2022-11-03T07:41:29.8979302Z added ***47 packages, and audited ***405 packages in 34s
2022-11-03T07:41:29.8985044Z 
2022-11-03T07:41:29.8985536Z 89 packages are looking for funding
2022-11-03T07:41:29.8986233Z   run `npm fund` for details
2022-11-03T07:41:29.9180557Z 
2022-11-03T07:41:29.9181136Z 22 vulnerabilities (7 moderate, *** high, 4 critical)
2022-11-03T07:41:29.9181567Z 
2022-11-03T07:41:29.9181902Z To address issues that do not require attention, run:
2022-11-03T07:41:29.9182527Z   npm audit fix
2022-11-03T07:41:29.9182836Z 
2022-11-03T07:41:29.9183207Z To address all issues possible (including breaking changes), run:
2022-11-03T07:41:29.9184062Z   npm audit fix --force
2022-11-03T07:41:29.9184393Z 
2022-11-03T07:41:29.9184705Z Some issues need review, and may require choosing
2022-11-03T07:41:29.9185575Z a different dependency.
2022-11-03T07:41:29.9185909Z 
2022-11-03T07:41:29.9186165Z Run `npm audit` for details.
2022-11-03T07:41:29.9197194Z [9***mnpm notice 
2022-11-03T07:41:29.9198036Z npm notice New minor version of npm available! 8.***.0 -> 8.***9.2
2022-11-03T07:41:29.9199010Z npm notice[9***m Changelog: <https://github.com/npm/cli/releases/tag/v8.***9.2>
2022-11-03T07:41:29.9200097Z npm notice Run `npm install -g npm@8.***9.2` to update!
2022-11-03T07:41:29.9200800Z npm notice 
2022-11-03T07:41:47.8324763Z Removing intermediate container 737ab272f779
2022-11-03T07:41:47.8326087Z  ---> 49ee97***bbd5e
2022-11-03T07:41:47.8327024Z Step 7/9 : COPY . ./
2022-11-03T07:41:49.5557615Z  ---> 7cf7a3***e***92a
2022-11-03T07:41:49.5558259Z Step 8/9 : EXPOSE 300***
2022-11-03T07:41:49.5822042Z  ---> Running in c4f304223cec
2022-11-03T07:41:51.1586574Z Removing intermediate container c4f304223cec
2022-11-03T07:41:51.1587665Z  ---> c5af***d5a2b8f
2022-11-03T07:41:51.1588319Z Step 9/9 : CMD [ "npm", "run", "dev" ]
2022-11-03T07:41:51.1818474Z  ---> Running in 507ff3372aa0
2022-11-03T07:41:52.7621395Z Removing intermediate container 507ff3372aa0
2022-11-03T07:41:52.7622930Z  ---> e57ad67a08e9
2022-11-03T07:41:52.7647270Z Successfully built e57ad67a08e9
2022-11-03T07:41:52.7713104Z Successfully tagged gcr.io/***/repo-name-dev:latest
2022-11-03T07:41:52.7756651Z ##[group]Run docker push gcr.io/***/repo-name-dev:latest
2022-11-03T07:41:52.7758051Z [36;***mdocker push gcr.io/***/repo-name-dev:latest
2022-11-03T07:41:52.7817314Z shell: /usr/bin/bash -e ***0***
2022-11-03T07:41:52.7817929Z env:
2022-11-03T07:41:52.7818662Z   CLOUDSDK_METRICS_ENVIRONMENT: github-actions-setup-gcloud
2022-11-03T07:41:52.7819399Z ##[endgroup]
2022-11-03T07:41:53.5110872Z The push refers to repository [gcr.io/***/repo-name-dev]
2022-11-03T07:41:53.5479558Z f3f3ab436742: Preparing
2022-11-03T07:41:53.5480979Z ab2d80ab606e: Preparing
2022-11-03T07:41:53.5481848Z 778e***3ace0fe: Preparing
2022-11-03T07:41:53.5482707Z abf62d***2b76b: Preparing
2022-11-03T07:41:53.5483529Z 5534b683e53***: Preparing
2022-11-03T07:41:53.5484304Z b0dfe5202b3a: Preparing
2022-11-03T07:41:53.5485108Z 2570***3f54cbd: Preparing
2022-11-03T07:41:53.5486774Z b54***d28bf3b4: Preparing
2022-11-03T07:41:53.5488116Z 2570***3f54cbd: Waiting
2022-11-03T07:41:53.5489090Z b54***d28bf3b4: Waiting
2022-11-03T07:41:53.5489849Z b0dfe5202b3a: Waiting
2022-11-03T07:41:53.8313643Z 5534b683e53***: Layer already exists
2022-11-03T07:41:53.9416678Z b0dfe5202b3a: Layer already exists
2022-11-03T07:41:54.0124878Z 2570***3f54cbd: Layer already exists
2022-11-03T07:41:54.1279417Z b54***d28bf3b4: Layer already exists
2022-11-03T07:41:54.8941886Z 778e***3ace0fe: Pushed
2022-11-03T07:41:54.9045481Z abf62d***2b76b: Pushed
2022-11-03T07:41:54.9088594Z f3f3ab436742: Pushed
2022-11-03T07:42:25.6883210Z ab2d80ab606e: Pushed
2022-11-03T07:42:27.1274100Z latest: digest: sha256:4208df6ab57f9067ecb***46b525346c632a***6a0cd58c93bd50b46df9dd2c***84af size: ***997
2022-11-03T07:42:27.1358309Z ##[group]Run gcloud run deploy repo-name-dev \
2022-11-03T07:42:27.1359386Z [36;***mgcloud run deploy repo-name-dev \
2022-11-03T07:42:27.1360206Z [36;***m--project *** \
2022-11-03T07:42:27.1360855Z [36;***m--port 300*** \
2022-11-03T07:42:27.1361743Z [36;***m--set-env-vars "ROOT_URL=***" \
2022-11-03T07:42:27.1362681Z [36;***m--set-env-vars "FRONTEND_URL=***" \
2022-11-03T07:42:27.1363678Z [36;***m--set-env-vars "ADMIN_PANEL_URL=***" \
2022-11-03T07:42:27.1364469Z [36;***m--set-env-vars "ADMIN_TOKEN=***" \
2022-11-03T07:42:27.1365368Z [36;***m--set-env-vars "DATABASE_HOST=***" \
2022-11-03T07:42:27.1366124Z [36;***m--set-env-vars "DATABASE_PORT=***" \
2022-11-03T07:42:27.1366902Z [36;***m--set-env-vars "DATABASE_NAME=***" \
2022-11-03T07:42:27.1367866Z [36;***m--set-env-vars "DATABASE_ADMIN=***" \
2022-11-03T07:42:27.1368709Z [36;***m--set-env-vars "DATABASE_VISITOR=***" \
2022-11-03T07:42:27.1369566Z [36;***m--set-env-vars "DATABASE_AUTH_USER=***" \
2022-11-03T07:42:27.1370572Z [36;***m--set-env-vars "DATABASE_AUTH_PASS=***" \
2022-11-03T07:42:27.1371792Z [36;***m--set-env-vars "DATABASE_URL=***" \
2022-11-03T07:42:27.1372439Z [36;***m--set-env-vars "CORS_URL=" \
2022-11-03T07:42:27.1383991Z [36;***m--set-env-vars "GOOGLE_KEY=***" \
2022-11-03T07:42:27.1384907Z [36;***m--set-env-vars "GOOGLE_SECRET=***
2022-11-03T07:42:27.1385612Z [36;***m" \
2022-11-03T07:42:27.1396195Z [36;***m--region asia-southeast*** \
2022-11-03T07:42:27.1397042Z [36;***m--image gcr.io/***/repo-name-dev \
2022-11-03T07:42:27.1397776Z [36;***m--platform managed \
2022-11-03T07:42:27.1398455Z [36;***m--allow-unauthenticated \
2022-11-03T07:42:27.1399441Z [36;***m--service-account *** \
2022-11-03T07:42:27.1400130Z [36;***m--min-instances=*** \
2022-11-03T07:42:27.1400768Z [36;***m--timeout 5m \
2022-11-03T07:42:27.1401388Z [36;***m--quiet
2022-11-03T07:42:27.1454422Z shell: /usr/bin/bash -e ***0***
2022-11-03T07:42:27.1454991Z env:
2022-11-03T07:42:27.1455616Z   CLOUDSDK_METRICS_ENVIRONMENT: github-actions-setup-gcloud
2022-11-03T07:42:27.1456266Z ##[endgroup]
2022-11-03T07:42:29.4116800Z Deploying container to Cloud Run service [repo-name-dev] in project [***] region [asia-southeast***]
2022-11-03T07:42:29.4118479Z Deploying...
2022-11-03T07:42:34.7775003Z Setting IAM Policy........................................done
2022-11-03T07:43:30.2975608Z Creating Revision.........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................done
2022-11-03T07:43:35.0894491Z Routing traffic...................................................failed
2022-11-03T07:43:35.0895335Z Deployment failed
2022-11-03T07:43:35.1084611Z ERROR: (gcloud.run.deploy) Revision 'repo-name-dev-00***0***-mub' is not ready and cannot serve traffic. The user-provided container failed to start and listen on the port defined provided by the PORT=300*** environment variable. Logs for this revision might contain more information.
2022-11-03T07:43:35.1085791Z 
2022-11-03T07:43:35.1087850Z Logs URL: https://console.cloud.google.com/logs/viewer?project=***&resource=cloud_run_revision/service_name/repo-name-dev/revision_name/repo-name-dev-00***0***-mub&advancedFilter=resource.type%3D%22cloud_run_revision%22%0Aresource.labels.service_name%3D%22repo-name-dev%22%0Aresource.labels.revision_name%3D%22repo-name-dev-00***0***-mub%22 
2022-11-03T07:43:35.1089669Z For more troubleshooting guidance, see https://cloud.google.com/run/docs/troubleshooting#container-failed-to-start
2022-11-03T07:43:35.2281243Z ##[error]Process completed with exit code ***.
2022-11-03T07:43:35.2413017Z Post job cleanup.
2022-11-03T07:43:35.3845775Z [command]/usr/bin/git version
2022-11-03T07:43:35.3903326Z git version 2.38.***
2022-11-03T07:43:35.3946000Z Temporarily overriding HOME='/home/runner/work/_temp/d0***074***7-40***0-4b***7-a97a-b3d6fed***66***b' before making global git config changes
2022-11-03T07:43:35.3947321Z Adding repository directory to the temporary git global config as a safe directory
2022-11-03T07:43:35.3952915Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/repo-name/repo-name
2022-11-03T07:43:35.3999340Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-11-03T07:43:35.4043974Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-11-03T07:43:35.4297685Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-11-03T07:43:35.4353399Z http.https://github.com/.extraheader
2022-11-03T07:43:35.4363694Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2022-11-03T07:43:35.4405289Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2022-11-03T07:43:35.4899579Z Cleaning up orphan processes

Additional information

Code for docker file:

FROM node:16-alpine3.14

ENV HOST 0.0.0.0
ENV PORT 3001

WORKDIR /usr/src/app

COPY package*.json ./

RUN npm install

COPY . ./

EXPOSE 3001
CMD [ "npm", "run", "dev" ]
sethvargo commented 2 years ago

You are using setup-gcloud@v0.2.0. The latest version is v0.6.2. Please upgrade to the latest version and see if that fixes your issue.

We also have the deploy-cloudrun action which might be of interest.

greydelta commented 2 years ago

I've tried changing to both setup-gcloud@0.6.0 and setup-gcloud@0.6.2

But the main error on nodejs version still occurs:

Annotations
1 error and 2 warnings

[Cloud Run Deployment]
Process completed with exit code ***.

[Cloud Run Deployment]
Node.js ***2 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node***6-instead-of-node***2/. Please update the following actions to use Node.js ***6: actions/checkout, actions/checkout

[Cloud Run Deployment]
"service_account_key" has been deprecated. Please switch to using google-github-actions/auth which supports both Workload Identity Federation and Service Account Key JSON authentication. For more details, see https://github.com/google-github-actions/setup-gcloud#authorization
sethvargo commented 2 years ago

Hi @greydelta - that's a slightly different error message than above. It now says:

Please update the following actions to use Node.js ***6: actions/checkout, actions/checkout

You need to upgrade actions/checkout, probably to v3.