Now getting Error response from daemon: Get "https://***/v2/": dial tcp: lookup *** on 127.0.0.53:53: no such host #718
Open
Description
Contributing guidelines
- I've read the contributing guidelines and wholeheartedly agree
I've found a bug, and:
- The documentation does not mention anything about my problem
- There are no open or closed issues that are related to my problem
Description
Last week I was able to use docker/login-action@v3 to push a container image to an Azure Container Registry but now I'm getting this error.
Error response from daemon: Get "https://***/v2/": dial tcp: lookup *** on 127.0.0.53:53: no such host
Running this from command line:
az acr login --name cgfnscr --expose-token
I get this response:
You can perform manual login using the provided access token below, for example: 'docker login loginServer -u 00000000-0000-0000-0000-000000000000 -p accessToken'
{
"accessToken": "BigLongTokenThingy",
"loginServer": "cgfnscr.azurecr.io"
}
Expected behaviour
Expect to see this in the log:
Run docker/login-action@v3
with:
registry: ***
username: ***
password: ***
ecr: auto
logout: true
Logging into ***...
Login Succeeded!
Actual behaviour
Now see this (with debug on):
Run docker/login-action@v3
with:
registry: ***
username: ***
password: ***
ecr: auto
logout: true
Logging into ***...
##[debug]Exec.getExecOutput: docker login --password-stdin --username *** ***
Error: Error response from daemon: Get "https://***/v2/": dial tcp: lookup *** on 127.0.0.53:53: no such host
##[debug]Node Action run completed with exit code 1
##[debug]Save intra-action state isPost = true
##[debug]Save intra-action state registry = ***
##[debug]Save intra-action state logout = true
##[debug]Finishing: Build and push image to ACR
Repository URL
cgfnscr.azurecr.io and yes it's private. Note this is accessed using private networking with a GitHub-hosted runner. Followed these instructions: Configuring private networking for GitHub-hosted runners in your organization and it was working last week just fine.
Workflow run URL
https://github.com/CGFNSOrg/IntegrationAPI/actions/runs/9197204010
YAML workflow
name: Build/Deploy Container to ACR/App Services
on:
# push:
# branches:
# - main
# - develop
# - qa
# - uat
# paths-ignore:
# - '.github/workflows/**'
# - '**.md'
# pull_request:
# branches:
# - main
# - develop
# - qa
# - uat
# paths-ignore:
# - '.github/workflows/**'
# - '**.md'
workflow_dispatch:
inputs:
environment:
description: 'Environment for deployment'
type: choice
options:
- dev
- qa
- uat
- prod
required: true
permissions:
id-token: write
contents: read
jobs:
build:
name: 'Build Container and push to Container Registry'
runs-on: LinuxRunner
steps:
- name: Get short commit SHA
id: commit_sha
run: echo "::set-output name=short_sha::$(echo ${GITHUB_SHA::7})"
- name: 'Checkout GitHub Repo'
uses: actions/checkout@main
- name: 'Determine Semantic Version'
uses: paulhatch/[email protected]
# id required to reference output variables
id: versioning
with:
# The prefix to use to identify tags
tag_prefix: "v"
# A string which, if present in a git commit, indicates that a change represents a
# major (breaking) change, supports regular expressions wrapped with '/'
major_pattern: "(MAJOR)"
# A string which indicates the flags used by the `major_pattern` regular expression. Supported flags: idgs
major_regexp_flags: ""
# Same as above except indicating a minor change, supports regular expressions wrapped with '/'
minor_pattern: "(MINOR)"
# A string which indicates the flags used by the `minor_pattern` regular expression. Supported flags: idgs
minor_regexp_flags: ""
# A string to determine the format of the version output
version_format: "${major}.${minor}.${patch}-${{ env.environment }}${increment}"
# Optional path to check for changes. If any changes are detected in the path the
# 'changed' output will true. Enter multiple paths separated by spaces.
# change_path: "src"
# If you want a named version, name will be used as suffix for name version tag
#namespace: Golden
# If this is set to true, *every* commit will be treated as a new version.
bump_each_commit: false
# If bump_each_commit is also set to true, setting this value will cause the version to increment
# only if the pattern specified is matched.
bump_each_commit_patch_pattern: ""
# If true, the body of commits will also be searched for major/minor patterns to determine the version type.
search_commit_body: false
# The output method used to generate list of users, 'csv' or 'json'.
user_format_type: "csv"
# Prevents pre-v1.0.0 version from automatically incrementing the major version.
# If enabled, when the major version is 0, major releases will be treated as minor and minor as patch.
# Note that the version_type output is unchanged.
enable_prerelease_mode: true
# If enabled, diagnostic information will be added to the action output.
debug: true
# If true, the branch will be used to select the maximum version.
version_from_branch: false
- name: 'Login via Azure CLI'
uses: azure/login@v2
with:
creds: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
- name: 'Build and push image to ACR'
uses: docker/login-action@v3
with:
registry: ${{ secrets.REGISTRY_LOGIN_SERVER }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- run: |
# Using version-commit id to make it easier to identify what is in the container
docker build . -t ${{ secrets.REGISTRY_LOGIN_SERVER }}/${{ env.image_name }}:${{ steps.versioning.outputs.version_tag }}-${{ steps.commit_sha.outputs.short_sha }} --platform=linux/amd64
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/${{ env.image_name }}:${{ steps.versioning.outputs.version_tag }}-${{ steps.commit_sha.outputs.short_sha }}
- name: 'Push to Azure App Service'
uses: azure/webapps-deploy@v2
with:
app-name: ${{ env.app_name }}
images: ${{ secrets.REGISTRY_LOGIN_SERVER }}/${{ env.image_name }}:${{ steps.versioning.outputs.version_tag }}-${{ steps.commit_sha.outputs.short_sha }}
Workflow logs
2024-05-22T19:22:55.0795545Z ##[debug]Starting: Build Container and push to Container Registry
2024-05-22T19:22:55.0821546Z ##[debug]Cleaning runner temp folder: /home/runner/work/_temp
2024-05-22T19:22:55.1068262Z ##[debug]Starting: Set up job
2024-05-22T19:22:55.1069015Z Current runner version: '2.316.1'
2024-05-22T19:22:55.1072152Z Runner name: 'LinuxRunner_8870135749c8'
2024-05-22T19:22:55.1072852Z Runner group name: 'githubazurerunners'
2024-05-22T19:22:55.1073892Z Machine name: 'runner'
2024-05-22T19:22:55.1091201Z ##[group]Operating System
2024-05-22T19:22:55.1091967Z Ubuntu
2024-05-22T19:22:55.1092389Z 22.04.4
2024-05-22T19:22:55.1092858Z LTS
2024-05-22T19:22:55.1093233Z ##[endgroup]
2024-05-22T19:22:55.1093658Z ##[group]Runner Image
2024-05-22T19:22:55.1094238Z Image: ubuntu-22.04
2024-05-22T19:22:55.1094700Z Version: 20240516.1.0
2024-05-22T19:22:55.1095815Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240516.1/images/ubuntu/Ubuntu2204-Readme.md
2024-05-22T19:22:55.1097314Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240516.1
2024-05-22T19:22:55.1098509Z ##[endgroup]
2024-05-22T19:22:55.1099544Z ##[group]GITHUB_TOKEN Permissions
2024-05-22T19:22:55.1101239Z Contents: read
2024-05-22T19:22:55.1101720Z Metadata: read
2024-05-22T19:22:55.1102253Z ##[endgroup]
2024-05-22T19:22:55.1104499Z Secret source: Actions
2024-05-22T19:22:55.1105228Z ##[debug]Primary repository: CGFNSOrg/IntegrationAPI
2024-05-22T19:22:55.1106089Z Prepare workflow directory
2024-05-22T19:22:55.1173451Z ##[debug]Creating pipeline directory: '/home/runner/work/IntegrationAPI'
2024-05-22T19:22:55.1177155Z ##[debug]Creating workspace directory: '/home/runner/work/IntegrationAPI/IntegrationAPI'
2024-05-22T19:22:55.1178896Z ##[debug]Update context data
2024-05-22T19:22:55.1182646Z ##[debug]Evaluating job-level environment variables
2024-05-22T19:22:55.1770831Z ##[debug]Evaluating job container
2024-05-22T19:22:55.1773939Z ##[debug]Evaluating job service containers
2024-05-22T19:22:55.1776301Z ##[debug]Evaluating job defaults
2024-05-22T19:22:55.1848713Z Prepare all required actions
2024-05-22T19:22:55.2008604Z Getting action download info
2024-05-22T19:22:55.3859833Z Download action repository 'actions/checkout@main' (SHA:b80ff79f1755d06ba70441c368a6fe801f5f3a62)
2024-05-22T19:22:55.5831459Z ##[debug]Download 'https://api.github.com/repos/actions/checkout/tarball/b80ff79f1755d06ba70441c368a6fe801f5f3a62' to '/home/runner/work/_actions/_temp_2821de75-dd98-43cc-897a-271553fb42e6/dcc67727-8003-4cde-888f-a3e09c964387.tar.gz'
2024-05-22T19:22:55.6456930Z ##[debug]Unwrap 'actions-checkout-b80ff79' to '/home/runner/work/_actions/actions/checkout/main'
2024-05-22T19:22:55.6702969Z ##[debug]Archive '/home/runner/work/_actions/_temp_2821de75-dd98-43cc-897a-271553fb42e6/dcc67727-8003-4cde-888f-a3e09c964387.tar.gz' has been unzipped into '/home/runner/work/_actions/actions/checkout/main'.
2024-05-22T19:22:55.6886047Z Download action repository 'paulhatch/[email protected]' (SHA:8d3552d38408b608e90e76237a2a5ac9fe524d04)
2024-05-22T19:22:55.8778450Z ##[debug]Download 'https://api.github.com/repos/PaulHatch/semantic-version/tarball/8d3552d38408b608e90e76237a2a5ac9fe524d04' to '/home/runner/work/_actions/_temp_0d38da54-197e-4fa4-aa4a-0ea0a40f674d/b875276a-120b-4ea7-bb05-28cd8f012499.tar.gz'
2024-05-22T19:22:55.8965826Z ##[debug]Unwrap 'PaulHatch-semantic-version-8d3552d' to '/home/runner/work/_actions/paulhatch/semantic-version/v5.3.0'
2024-05-22T19:22:55.9091290Z ##[debug]Archive '/home/runner/work/_actions/_temp_0d38da54-197e-4fa4-aa4a-0ea0a40f674d/b875276a-120b-4ea7-bb05-28cd8f012499.tar.gz' has been unzipped into '/home/runner/work/_actions/paulhatch/semantic-version/v5.3.0'.
2024-05-22T19:22:55.9122774Z Download action repository 'azure/login@v2' (SHA:6b2456866fc08b011acb422a92a4aa20e2c4de32)
2024-05-22T19:22:56.0339961Z ##[debug]Download 'https://api.github.com/repos/Azure/login/tarball/6b2456866fc08b011acb422a92a4aa20e2c4de32' to '/home/runner/work/_actions/_temp_e9b00b37-74bc-47e4-a91c-9ad038e05789/302fb214-6f07-4c53-b7dd-95049a8b3ec7.tar.gz'
2024-05-22T19:22:56.0713564Z ##[debug]Unwrap 'Azure-login-6b24568' to '/home/runner/work/_actions/azure/login/v2'
2024-05-22T19:22:56.0774723Z ##[debug]Archive '/home/runner/work/_actions/_temp_e9b00b37-74bc-47e4-a91c-9ad038e05789/302fb214-6f07-4c53-b7dd-95049a8b3ec7.tar.gz' has been unzipped into '/home/runner/work/_actions/azure/login/v2'.
2024-05-22T19:22:56.0800135Z Download action repository 'docker/login-action@v3' (SHA:e92390c5fb421da1463c202d546fed0ec5c39f20)
2024-05-22T19:22:56.2057060Z ##[debug]Download 'https://api.github.com/repos/docker/login-action/tarball/e92390c5fb421da1463c202d546fed0ec5c39f20' to '/home/runner/work/_actions/_temp_def1401b-1da8-4957-adfa-ad01cad5df5f/8e8a899b-4c52-44c1-8514-6fe939efb768.tar.gz'
2024-05-22T19:22:56.2444550Z ##[debug]Unwrap 'docker-login-action-e92390c' to '/home/runner/work/_actions/docker/login-action/v3'
2024-05-22T19:22:56.2560271Z ##[debug]Archive '/home/runner/work/_actions/_temp_def1401b-1da8-4957-adfa-ad01cad5df5f/8e8a899b-4c52-44c1-8514-6fe939efb768.tar.gz' has been unzipped into '/home/runner/work/_actions/docker/login-action/v3'.
2024-05-22T19:22:56.2590008Z Download action repository 'azure/webapps-deploy@v2' (SHA:8e359a3761daf647ae3fa56123a9c3aa8a51d269)
2024-05-22T19:22:56.4504907Z ##[debug]Download 'https://api.github.com/repos/Azure/webapps-deploy/tarball/8e359a3761daf647ae3fa56123a9c3aa8a51d269' to '/home/runner/work/_actions/_temp_962f3cc0-a75f-4167-9f19-37ec6e16ea6a/bd4bdde3-9829-4714-bfd7-0087107554f5.tar.gz'
2024-05-22T19:22:57.0279214Z ##[debug]Unwrap 'Azure-webapps-deploy-8e359a3' to '/home/runner/work/_actions/azure/webapps-deploy/v2'
2024-05-22T19:22:58.0017817Z ##[debug]Archive '/home/runner/work/_actions/_temp_962f3cc0-a75f-4167-9f19-37ec6e16ea6a/bd4bdde3-9829-4714-bfd7-0087107554f5.tar.gz' has been unzipped into '/home/runner/work/_actions/azure/webapps-deploy/v2'.
2024-05-22T19:22:58.1492815Z ##[debug]action.yml for action: '/home/runner/work/_actions/actions/checkout/main/action.yml'.
2024-05-22T19:22:58.2287028Z ##[debug]action.yml for action: '/home/runner/work/_actions/paulhatch/semantic-version/v5.3.0/action.yml'.
2024-05-22T19:22:58.2347444Z ##[debug]action.yml for action: '/home/runner/work/_actions/azure/login/v2/action.yml'.
2024-05-22T19:22:58.2391353Z ##[debug]action.yml for action: '/home/runner/work/_actions/docker/login-action/v3/action.yml'.
2024-05-22T19:22:58.2418603Z ##[debug]action.yml for action: '/home/runner/work/_actions/azure/webapps-deploy/v2/action.yml'.
2024-05-22T19:22:58.2508051Z ##[debug]Set step 'commit_sha' display name to: 'Get short commit SHA'
2024-05-22T19:22:58.2510274Z ##[debug]Set step '__actions_checkout' display name to: 'Checkout GitHub Repo'
2024-05-22T19:22:58.2512112Z ##[debug]Set step 'versioning' display name to: 'Determine Symantic Version'
2024-05-22T19:22:58.2513930Z ##[debug]Set step '__azure_login' display name to: 'Login via Azure CLI'
2024-05-22T19:22:58.2515828Z ##[debug]Set step '__azure_login' display name to: 'Login via Azure CLI'
2024-05-22T19:22:58.2520554Z ##[debug]Set step '__run' display name to: 'Run sudo systemctl daemon-reload'
2024-05-22T19:22:58.2522450Z ##[debug]Set step '__docker_login-action' display name to: 'Build and push image to ACR'
2024-05-22T19:22:58.2577956Z ##[debug]Set step '__run_2' display name to: 'Run # Using version-commit id to make it easier to identify what is in the container'
2024-05-22T19:22:58.2580294Z ##[debug]Set step '__azure_webapps-deploy' display name to: 'Push to Azure App Service'
2024-05-22T19:22:58.2581667Z Complete job name: Build Container and push to Container Registry
2024-05-22T19:22:58.2620184Z ##[debug]Collect running processes for tracking orphan processes.
2024-05-22T19:22:58.2863294Z ##[debug]Finishing: Set up job
2024-05-22T19:22:58.3216420Z ##[debug]Evaluating condition for step: 'Pre Login via Azure CLI'
2024-05-22T19:22:58.3254187Z ##[debug]Evaluating: always()
2024-05-22T19:22:58.3259654Z ##[debug]Evaluating always:
2024-05-22T19:22:58.3274721Z ##[debug]=> true
2024-05-22T19:22:58.3282178Z ##[debug]Result: true
2024-05-22T19:22:58.3324701Z ##[debug]Starting: Pre Login via Azure CLI
2024-05-22T19:22:58.3433516Z ##[debug]Register post job cleanup for action: azure/login@v2
2024-05-22T19:22:58.3535935Z ##[debug]Loading inputs
2024-05-22T19:22:58.3543933Z ##[debug]Evaluating: format('{{"clientId":"{0}","clientSecret":"{1}","subscriptionId":"{2}","tenantId":"{3}"}}', secrets.AZURE_CLIENT_ID, secrets.AZURE_CLIENT_SECRET, secrets.AZURE_SUBSCRIPTION_ID, secrets.AZURE_TENANT_ID)
2024-05-22T19:22:58.3545722Z ##[debug]Evaluating format:
2024-05-22T19:22:58.3560893Z ##[debug]..Evaluating String:
2024-05-22T19:22:58.3562154Z ##[debug]..=> '{{"clientId":"{0}","clientSecret":"{1}","subscriptionId":"{2}","tenantId":"{3}"}}'
2024-05-22T19:22:58.3586043Z ##[debug]..Evaluating Index:
2024-05-22T19:22:58.3588076Z ##[debug]....Evaluating secrets:
2024-05-22T19:22:58.3589605Z ##[debug]....=> Object
2024-05-22T19:22:58.3602243Z ##[debug]....Evaluating String:
2024-05-22T19:22:58.3602793Z ##[debug]....=> 'AZURE_CLIENT_ID'
2024-05-22T19:22:58.3605803Z ##[debug]..=> '***'
2024-05-22T19:22:58.3607635Z ##[debug]..Evaluating Index:
2024-05-22T19:22:58.3608285Z ##[debug]....Evaluating secrets:
2024-05-22T19:22:58.3608778Z ##[debug]....=> Object
2024-05-22T19:22:58.3609219Z ##[debug]....Evaluating String:
2024-05-22T19:22:58.3609764Z ##[debug]....=> 'AZURE_CLIENT_SECRET'
2024-05-22T19:22:58.3610995Z ##[debug]..=> '***'
2024-05-22T19:22:58.3611533Z ##[debug]..Evaluating Index:
2024-05-22T19:22:58.3611970Z ##[debug]....Evaluating secrets:
2024-05-22T19:22:58.3612438Z ##[debug]....=> Object
2024-05-22T19:22:58.3612918Z ##[debug]....Evaluating String:
2024-05-22T19:22:58.3613427Z ##[debug]....=> 'AZURE_SUBSCRIPTION_ID'
2024-05-22T19:22:58.3614090Z ##[debug]..=> '***'
2024-05-22T19:22:58.3614524Z ##[debug]..Evaluating Index:
2024-05-22T19:22:58.3614953Z ##[debug]....Evaluating secrets:
2024-05-22T19:22:58.3615480Z ##[debug]....=> Object
2024-05-22T19:22:58.3615929Z ##[debug]....Evaluating String:
2024-05-22T19:22:58.3616428Z ##[debug]....=> 'AZURE_TENANT_ID'
2024-05-22T19:22:58.3616980Z ##[debug]..=> '***'
2024-05-22T19:22:58.3618398Z ##[debug]=> '{"clientId":"***","clientSecret":"***","subscriptionId":"***","tenantId":"***"}'
2024-05-22T19:22:58.3620024Z ##[debug]Result: '{"clientId":"***","clientSecret":"***","subscriptionId":"***","tenantId":"***"}'
2024-05-22T19:22:58.3634626Z ##[debug]Loading env
2024-05-22T19:22:58.3725351Z ##[group]Run azure/login@v2
2024-05-22T19:22:58.3725927Z with:
2024-05-22T19:22:58.3727191Z creds: {"clientId":"***","clientSecret":"***","subscriptionId":"***","tenantId":"***"}
2024-05-22T19:22:58.3727884Z enable-AzPSSession: false
2024-05-22T19:22:58.3728392Z environment: azurecloud
2024-05-22T19:22:58.3728823Z allow-no-subscriptions: false
2024-05-22T19:22:58.3729432Z audience: api://AzureADTokenExchange
2024-05-22T19:22:58.3729916Z auth-type: SERVICE_PRINCIPAL
2024-05-22T19:22:58.3731101Z ##[endgroup]
2024-05-22T19:22:58.4357458Z ##[debug]Azure CLI path: /usr/bin/az
2024-05-22T19:22:58.4359617Z Clearing azure cli accounts from the local cache.
2024-05-22T19:22:58.4395769Z [command]/usr/bin/az account clear
2024-05-22T19:23:02.2623941Z ##[debug]Node Action run completed with exit code 0
2024-05-22T19:23:02.2751818Z ##[debug]Finishing: Pre Login via Azure CLI
2024-05-22T19:23:02.2763953Z ##[debug]Evaluating condition for step: 'Get short commit SHA'
2024-05-22T19:23:02.2767274Z ##[debug]Evaluating: success()
2024-05-22T19:23:02.2767772Z ##[debug]Evaluating success:
2024-05-22T19:23:02.2778026Z ##[debug]=> true
2024-05-22T19:23:02.2778673Z ##[debug]Result: true
2024-05-22T19:23:02.2779573Z ##[debug]Starting: Get short commit SHA
2024-05-22T19:23:02.2790167Z ##[debug]Loading inputs
2024-05-22T19:23:02.2791108Z ##[debug]Loading env
2024-05-22T19:23:02.2825884Z ##[group]Run echo "::set-output name=short_sha::$(echo ${GITHUB_SHA::7})"
2024-05-22T19:23:02.2826593Z �[36;1mecho "::set-output name=short_sha::$(echo ${GITHUB_SHA::7})"�[0m
2024-05-22T19:23:02.2905093Z shell: /usr/bin/bash -e {0}
2024-05-22T19:23:02.2905980Z ##[endgroup]
2024-05-22T19:23:02.3028425Z ##[debug]/usr/bin/bash -e /home/runner/work/_temp/6530c2fa-de3f-4921-9164-1e9a533736ea.sh
2024-05-22T19:23:02.3068290Z ::set-output name=short_sha::2cbbade
2024-05-22T19:23:02.3081648Z ##[warning]The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
2024-05-22T19:23:02.3103642Z ##[debug]steps.commit_sha.outputs.short_sha='2cbbade'
2024-05-22T19:23:02.3109684Z ##[debug]Finishing: Get short commit SHA
2024-05-22T19:23:02.3129007Z ##[debug]Evaluating condition for step: 'Checkout GitHub Repo'
2024-05-22T19:23:02.3130345Z ##[debug]Evaluating: success()
2024-05-22T19:23:02.3130823Z ##[debug]Evaluating success:
2024-05-22T19:23:02.3131326Z ##[debug]=> true
2024-05-22T19:23:02.3131801Z ##[debug]Result: true
2024-05-22T19:23:02.3132427Z ##[debug]Starting: Checkout GitHub Repo
2024-05-22T19:23:02.3161788Z ##[debug]Register post job cleanup for action: actions/checkout@main
2024-05-22T19:23:02.3172718Z ##[debug]Loading inputs
2024-05-22T19:23:02.3173837Z ##[debug]Evaluating: github.repository
2024-05-22T19:23:02.3174283Z ##[debug]Evaluating Index:
2024-05-22T19:23:02.3174624Z ##[debug]..Evaluating github:
2024-05-22T19:23:02.3174963Z ##[debug]..=> Object
2024-05-22T19:23:02.3175286Z ##[debug]..Evaluating String:
2024-05-22T19:23:02.3175634Z ##[debug]..=> 'repository'
2024-05-22T19:23:02.3176051Z ##[debug]=> 'CGFNSOrg/IntegrationAPI'
2024-05-22T19:23:02.3177607Z ##[debug]Result: 'CGFNSOrg/IntegrationAPI'
2024-05-22T19:23:02.3179577Z ##[debug]Evaluating: github.token
2024-05-22T19:23:02.3179984Z ##[debug]Evaluating Index:
2024-05-22T19:23:02.3180324Z ##[debug]..Evaluating github:
2024-05-22T19:23:02.3180663Z ##[debug]..=> Object
2024-05-22T19:23:02.3180997Z ##[debug]..Evaluating String:
2024-05-22T19:23:02.3181325Z ##[debug]..=> 'token'
2024-05-22T19:23:02.3181906Z ##[debug]=> '***'
2024-05-22T19:23:02.3182358Z ##[debug]Result: '***'
2024-05-22T19:23:02.3192612Z ##[debug]Loading env
2024-05-22T19:23:02.3198491Z ##[group]Run actions/checkout@main
2024-05-22T19:23:02.3198830Z with:
2024-05-22T19:23:02.3199097Z repository: CGFNSOrg/IntegrationAPI
2024-05-22T19:23:02.3199614Z token: ***
2024-05-22T19:23:02.3199883Z ssh-strict: true
2024-05-22T19:23:02.3200156Z ssh-user: git
2024-05-22T19:23:02.3200440Z persist-credentials: true
2024-05-22T19:23:02.3200761Z clean: true
2024-05-22T19:23:02.3201038Z sparse-checkout-cone-mode: true
2024-05-22T19:23:02.3201376Z fetch-depth: 1
2024-05-22T19:23:02.3201646Z fetch-tags: false
2024-05-22T19:23:02.3201925Z show-progress: true
2024-05-22T19:23:02.3202203Z lfs: false
2024-05-22T19:23:02.3202455Z submodules: false
2024-05-22T19:23:02.3202732Z set-safe-directory: true
2024-05-22T19:23:02.3203522Z ##[endgroup]
2024-05-22T19:23:02.4122490Z ##[debug]GITHUB_WORKSPACE = '/home/runner/work/IntegrationAPI/IntegrationAPI'
2024-05-22T19:23:02.4125106Z ##[debug]qualified repository = 'CGFNSOrg/IntegrationAPI'
2024-05-22T19:23:02.4127253Z ##[debug]ref = 'refs/heads/main'
2024-05-22T19:23:02.4161474Z ##[debug]commit = '2cbbade2df7fe373ae5f85b1d2236bd0e6428810'
2024-05-22T19:23:02.4163129Z ##[debug]clean = true
2024-05-22T19:23:02.4164192Z ##[debug]filter = undefined
2024-05-22T19:23:02.4165149Z ##[debug]fetch depth = 1
2024-05-22T19:23:02.4166069Z ##[debug]fetch tags = false
2024-05-22T19:23:02.4167007Z ##[debug]show progress = true
2024-05-22T19:23:02.4167958Z ##[debug]lfs = false
2024-05-22T19:23:02.4168875Z ##[debug]submodules = false
2024-05-22T19:23:02.4169826Z ##[debug]recursive submodules = false
2024-05-22T19:23:02.4188320Z ##[debug]GitHub Host URL =
2024-05-22T19:23:02.4194148Z ::add-matcher::/home/runner/work/_actions/actions/checkout/main/dist/problem-matcher.json
2024-05-22T19:23:02.4306096Z ##[debug]Added matchers: 'checkout-git'. Problem matchers scan action output for known warning or error strings and report these inline.
2024-05-22T19:23:02.4358636Z Syncing repository: CGFNSOrg/IntegrationAPI
2024-05-22T19:23:02.4382860Z ::group::Getting Git version info
2024-05-22T19:23:02.4384703Z ##[group]Getting Git version info
2024-05-22T19:23:02.4385745Z Working directory is '/home/runner/work/IntegrationAPI/IntegrationAPI'
2024-05-22T19:23:02.4406106Z ##[debug]Getting git version
2024-05-22T19:23:02.4424891Z [command]/usr/bin/git version
2024-05-22T19:23:02.4560366Z git version 2.45.1
2024-05-22T19:23:02.4583242Z ##[debug]0
2024-05-22T19:23:02.4584702Z ##[debug]git version 2.45.1
2024-05-22T19:23:02.4585645Z ##[debug]
2024-05-22T19:23:02.4587450Z ##[debug]Set git useragent to: git/2.45.1 (github-actions-checkout)
2024-05-22T19:23:02.4591103Z ::endgroup::
2024-05-22T19:23:02.4591643Z ##[endgroup]
2024-05-22T19:23:02.4607217Z ::add-mask::***
2024-05-22T19:23:02.4616629Z Temporarily overriding HOME='/home/runner/work/_temp/0a231f93-fe81-4503-bd99-e2dd1a9cfe83' before making global git config changes
2024-05-22T19:23:02.4618842Z Adding repository directory to the temporary git global config as a safe directory
2024-05-22T19:23:02.4623994Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/IntegrationAPI/IntegrationAPI
2024-05-22T19:23:02.4665212Z ##[debug]0
2024-05-22T19:23:02.4666424Z ##[debug]
2024-05-22T19:23:02.4672220Z Deleting the contents of '/home/runner/work/IntegrationAPI/IntegrationAPI'
2024-05-22T19:23:02.4680297Z ::group::Initializing the repository
2024-05-22T19:23:02.4681017Z ##[group]Initializing the repository
2024-05-22T19:23:02.4685737Z [command]/usr/bin/git init /home/runner/work/IntegrationAPI/IntegrationAPI
2024-05-22T19:23:02.4776201Z hint: Using 'master' as the name for the initial branch. This default branch name
2024-05-22T19:23:02.4777984Z hint: is subject to change. To configure the initial branch name to use in all
2024-05-22T19:23:02.4779724Z hint: of your new repositories, which will suppress this warning, call:
2024-05-22T19:23:02.4781044Z hint:
2024-05-22T19:23:02.4782166Z hint: git config --global init.defaultBranch <name>
2024-05-22T19:23:02.4783420Z hint:
2024-05-22T19:23:02.4784779Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2024-05-22T19:23:02.4833722Z hint: 'development'. The just-created branch can be renamed via this command:
2024-05-22T19:23:02.4834598Z hint:
2024-05-22T19:23:02.4835742Z hint: git branch -m <name>
2024-05-22T19:23:02.4836700Z Initialized empty Git repository in /home/runner/work/IntegrationAPI/IntegrationAPI/.git/
2024-05-22T19:23:02.4838018Z ##[debug]0
2024-05-22T19:23:02.4839212Z ##[debug]Initialized empty Git repository in /home/runner/work/IntegrationAPI/IntegrationAPI/.git/
2024-05-22T19:23:02.4840231Z ##[debug]
2024-05-22T19:23:02.4840995Z [command]/usr/bin/git remote add origin https://github.com/CGFNSOrg/IntegrationAPI
2024-05-22T19:23:02.4891408Z ##[debug]0
2024-05-22T19:23:02.4892488Z ##[debug]
2024-05-22T19:23:02.4893544Z ::endgroup::
2024-05-22T19:23:02.4893950Z ##[endgroup]
2024-05-22T19:23:02.4895065Z ::group::Disabling automatic garbage collection
2024-05-22T19:23:02.4895795Z ##[group]Disabling automatic garbage collection
2024-05-22T19:23:02.4903666Z [command]/usr/bin/git config --local gc.auto 0
2024-05-22T19:23:02.4958849Z ##[debug]0
2024-05-22T19:23:02.4959871Z ##[debug]
2024-05-22T19:23:02.4960792Z ::endgroup::
2024-05-22T19:23:02.4961197Z ##[endgroup]
2024-05-22T19:23:02.4962132Z ::group::Setting up auth
2024-05-22T19:23:02.4962629Z ##[group]Setting up auth
2024-05-22T19:23:02.4972634Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2024-05-22T19:23:02.5018710Z ##[debug]1
2024-05-22T19:23:02.5019726Z ##[debug]
2024-05-22T19:23:02.5028431Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2024-05-22T19:23:02.5402936Z ##[debug]0
2024-05-22T19:23:02.5404255Z ##[debug]
2024-05-22T19:23:02.5437461Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2024-05-22T19:23:02.5469280Z ##[debug]1
2024-05-22T19:23:02.5470303Z ##[debug]
2024-05-22T19:23:02.5482933Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2024-05-22T19:23:02.5778582Z ##[debug]0
2024-05-22T19:23:02.5781873Z ##[debug]
2024-05-22T19:23:02.5790209Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2024-05-22T19:23:02.5825140Z ##[debug]0
2024-05-22T19:23:02.5826409Z ##[debug]
2024-05-22T19:23:02.5833991Z ::endgroup::
2024-05-22T19:23:02.5834480Z ##[endgroup]
2024-05-22T19:23:02.5835582Z ::group::Fetching the repository
2024-05-22T19:23:02.5836255Z ##[group]Fetching the repository
2024-05-22T19:23:02.5845472Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +2cbbade2df7fe373ae5f85b1d2236bd0e6428810:refs/remotes/origin/main
2024-05-22T19:23:02.8700421Z From https://github.com/CGFNSOrg/IntegrationAPI
2024-05-22T19:23:02.8702076Z * [new ref] 2cbbade2df7fe373ae5f85b1d2236bd0e6428810 -> origin/main
2024-05-22T19:23:02.8723174Z ##[debug]0
2024-05-22T19:23:02.8724333Z ##[debug]
2024-05-22T19:23:02.8725567Z ::endgroup::
2024-05-22T19:23:02.8726025Z ##[endgroup]
2024-05-22T19:23:02.8729253Z ::group::Determining the checkout info
2024-05-22T19:23:02.8729913Z ##[group]Determining the checkout info
2024-05-22T19:23:02.8731090Z ::endgroup::
2024-05-22T19:23:02.8731506Z ##[endgroup]
2024-05-22T19:23:02.8756214Z [command]/usr/bin/git sparse-checkout disable
2024-05-22T19:23:02.8785691Z ##[debug]0
2024-05-22T19:23:02.8786825Z ##[debug]
2024-05-22T19:23:02.8792329Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
2024-05-22T19:23:02.8836559Z ##[debug]0
2024-05-22T19:23:02.8837532Z ##[debug]
2024-05-22T19:23:02.8838436Z ::group::Checking out the ref
2024-05-22T19:23:02.8839033Z ##[group]Checking out the ref
2024-05-22T19:23:02.8842121Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
2024-05-22T19:23:02.9101371Z Switched to a new branch 'main'
2024-05-22T19:23:02.9105197Z branch 'main' set up to track 'origin/main'.
2024-05-22T19:23:02.9111152Z ##[debug]0
2024-05-22T19:23:02.9112644Z ##[debug]branch 'main' set up to track 'origin/main'.
2024-05-22T19:23:02.9113355Z ##[debug]
2024-05-22T19:23:02.9114446Z ::endgroup::
2024-05-22T19:23:02.9115345Z ##[endgroup]
2024-05-22T19:23:02.9164167Z ##[debug]0
2024-05-22T19:23:02.9165542Z ##[debug]commit 2cbbade2df7fe373ae5f85b1d2236bd0e6428810
2024-05-22T19:23:02.9166556Z ##[debug]Author: Stan Spotts <[email protected]>
2024-05-22T19:23:02.9167477Z ##[debug]Date: Wed May 22 13:19:12 2024 -0400
2024-05-22T19:23:02.9168073Z ##[debug]
2024-05-22T19:23:02.9168624Z ##[debug] Update researchdevelopcontainerdeployment.yml
2024-05-22T19:23:02.9169330Z ##[debug]
2024-05-22T19:23:02.9177824Z [command]/usr/bin/git log -1 --format='%H'
2024-05-22T19:23:02.9206511Z '2cbbade2df7fe373ae5f85b1d2236bd0e6428810'
2024-05-22T19:23:02.9223919Z ##[debug]0
2024-05-22T19:23:02.9225170Z ##[debug]'2cbbade2df7fe373ae5f85b1d2236bd0e6428810'
2024-05-22T19:23:02.9225832Z ##[debug]
2024-05-22T19:23:02.9226793Z ##[debug]Unsetting HOME override
2024-05-22T19:23:02.9229272Z ::remove-matcher owner=checkout-git::
2024-05-22T19:23:02.9253664Z ##[debug]Removed matchers: 'checkout-git'
2024-05-22T19:23:02.9464030Z ##[debug]Node Action run completed with exit code 0
2024-05-22T19:23:02.9467007Z ##[debug]Save intra-action state isPost = true
2024-05-22T19:23:02.9467605Z ##[debug]Save intra-action state setSafeDirectory = true
2024-05-22T19:23:02.9468324Z ##[debug]Save intra-action state repositoryPath = /home/runner/work/IntegrationAPI/IntegrationAPI
2024-05-22T19:23:02.9469738Z ##[debug]Finishing: Checkout GitHub Repo
2024-05-22T19:23:02.9478858Z ##[debug]Evaluating condition for step: 'Determine Symantic Version'
2024-05-22T19:23:02.9480514Z ##[debug]Evaluating: success()
2024-05-22T19:23:02.9480992Z ##[debug]Evaluating success:
2024-05-22T19:23:02.9481491Z ##[debug]=> true
2024-05-22T19:23:02.9481977Z ##[debug]Result: true
2024-05-22T19:23:02.9482646Z ##[debug]Starting: Determine Symantic Version
2024-05-22T19:23:02.9515037Z ##[debug]Loading inputs
2024-05-22T19:23:02.9516704Z ##[debug]Evaluating: format('${{major}}.${{minor}}.${{patch}}-{0}${{increment}}', env.environment)
2024-05-22T19:23:02.9517293Z ##[debug]Evaluating format:
2024-05-22T19:23:02.9517623Z ##[debug]..Evaluating String:
2024-05-22T19:23:02.9518045Z ##[debug]..=> '${{major}}.${{minor}}.${{patch}}-{0}${{increment}}'
2024-05-22T19:23:02.9518673Z ##[debug]..Evaluating Index:
2024-05-22T19:23:02.9519013Z ##[debug]....Evaluating env:
2024-05-22T19:23:02.9519350Z ##[debug]....=> Object
2024-05-22T19:23:02.9519671Z ##[debug]....Evaluating String:
2024-05-22T19:23:02.9520048Z ##[debug]....=> 'environment'
2024-05-22T19:23:02.9522169Z ##[debug]..=> 'dev'
2024-05-22T19:23:02.9522620Z ##[debug]=> '${major}.${minor}.${patch}-dev${increment}'
2024-05-22T19:23:02.9523184Z ##[debug]Result: '${major}.${minor}.${patch}-dev${increment}'
2024-05-22T19:23:02.9525933Z ##[debug]Loading env
2024-05-22T19:23:02.9531467Z ##[group]Run paulhatch/[email protected]
2024-05-22T19:23:02.9531850Z with:
2024-05-22T19:23:02.9532084Z tag_prefix: v
2024-05-22T19:23:02.9532355Z major_pattern: (MAJOR)
2024-05-22T19:23:02.9532654Z minor_pattern: (MINOR)
2024-05-22T19:23:02.9533040Z version_format: ${major}.${minor}.${patch}-dev${increment}
2024-05-22T19:23:02.9533473Z bump_each_commit: false
2024-05-22T19:23:02.9533787Z search_commit_body: false
2024-05-22T19:23:02.9534103Z user_format_type: csv
2024-05-22T19:23:02.9534407Z enable_prerelease_mode: true
2024-05-22T19:23:02.9534724Z debug: true
2024-05-22T19:23:02.9534988Z version_from_branch: false
2024-05-22T19:23:02.9535300Z branch: HEAD
2024-05-22T19:23:02.9535559Z use_branches: false
2024-05-22T19:23:02.9536316Z ##[endgroup]
2024-05-22T19:23:03.0452691Z ##[warning]None of the 1 tags(s) found were valid version tags for the present configuration. If this is unexpected, check to ensure that the configuration is correct and matches the tag format you are using.
2024-05-22T19:23:03.0496828Z Version is 0.0.1-dev0
2024-05-22T19:23:03.0498848Z To create a release for this version, go to https://github.com/CGFNSOrg/IntegrationAPI/releases/new?tag=v0.0.1&target=2cbbade2df7fe373ae5f85b1d2236bd0e6428810
2024-05-22T19:23:03.0560432Z ##[debug]Node Action run completed with exit code 0
2024-05-22T19:23:03.0564400Z ##[debug]Set output version = 0.0.1-dev0
2024-05-22T19:23:03.0565138Z ##[debug]Set output major = 0
2024-05-22T19:23:03.0565779Z ##[debug]Set output minor = 0
2024-05-22T19:23:03.0566406Z ##[debug]Set output patch = 1
2024-05-22T19:23:03.0567042Z ##[debug]Set output increment = 0
2024-05-22T19:23:03.0567692Z ##[debug]Set output version_type = patch
2024-05-22T19:23:03.0568346Z ##[debug]Set output changed = true
2024-05-22T19:23:03.0568980Z ##[debug]Set output is_tagged = false
2024-05-22T19:23:03.0569623Z ##[debug]Set output version_tag = v0.0.1
2024-05-22T19:23:03.0570615Z ##[debug]Set output authors = Stan Spotts <[email protected]>
2024-05-22T19:23:03.0571395Z ##[debug]Set output previous_commit =
2024-05-22T19:23:03.0571815Z ##[debug]Set output previous_version = 0.0.0
2024-05-22T19:23:03.0572399Z ##[debug]Set output current_commit = 2cbbade2df7fe373ae5f85b1d2236bd0e6428810
2024-05-22T19:23:03.0578934Z ##[debug]Set output debug_output = {"commands":[{"command":"git","args":["rev-parse","--abbrev-ref","HEAD"],"output":"main\n","stderr":"","error":null},{"command":"git","args":["rev-list","-n1","--all"],"output":"2cbbade2df7fe373ae5f85b1d2236bd0e6428810\n","stderr":"","error":null},{"command":"git","args":["rev-parse","HEAD"],"output":"2cbbade2df7fe373ae5f85b1d2236bd0e6428810\n","stderr":"","error":null},{"command":"git tag --points-at 2cbbade2df7fe373ae5f85b1d2236bd0e6428810 v*[0-9].*[0-9].*[0-9]","args":[],"output":"","stderr":"","error":null},{"command":"git for-each-ref --sort=-v:*refname --format=%(refname:short) --merged=2cbbade2df7fe373ae5f85b1d2236bd0e6428810 refs/tags/v*[0-9].*[0-9].*[0-9]","args":[],"output":"","stderr":"","error":null},{"command":"git","args":["remote"],"output":"origin\n","stderr":"","error":null},{"command":"git log --pretty=\"@@@START_RECORD%n@@@hash%n%H%n@@@subject%n%s%n@@@body%n%b%n@@@author%n%an%n@@@authorEmail%n%ae%n@@@authorDate%n%aI%n@@@committer%n%cn%n@@@committerEmail%n%ce%n@@@committerDate%n%cI%n@@@tags%n%d\" --author-date-order 2cbbade2df7fe373ae5f85b1d2236bd0e6428810","args":[],"output":"@@@START_RECORD\n@@@hash\n2cbbade2df7fe373ae5f85b1d2236bd0e6428810\n@@@subject\nUpdate researchdevelopcontainerdeployment.yml\n@@@body\n\n@@@author\nStan Spotts\n@@@authorEmail\[email protected]\n@@@authorDate\n2024-05-22T13:19:12-04:00\n@@@committer\nGitHub\n@@@committerEmail\[email protected]\n@@@committerDate\n2024-05-22T13:19:12-04:00\n@@@tags\n (grafted, HEAD -> main, origin/main)\n","stderr":"","error":null}],"empty":false}
2024-05-22T19:23:03.0585710Z ##[debug]Finishing: Determine Symantic Version
2024-05-22T19:23:03.0594466Z ##[debug]Evaluating condition for step: 'Login via Azure CLI'
2024-05-22T19:23:03.0596398Z ##[debug]Evaluating: success()
2024-05-22T19:23:03.0596874Z ##[debug]Evaluating success:
2024-05-22T19:23:03.0597395Z ##[debug]=> true
2024-05-22T19:23:03.0597871Z ##[debug]Result: true
2024-05-22T19:23:03.0598499Z ##[debug]Starting: Login via Azure CLI
2024-05-22T19:23:03.0614306Z ##[debug]Register post job cleanup for action: azure/login@v2
2024-05-22T19:23:03.0622627Z ##[debug]Loading inputs
2024-05-22T19:23:03.0624900Z ##[debug]Evaluating: format('{{"clientId":"{0}","clientSecret":"{1}","subscriptionId":"{2}","tenantId":"{3}"}}', secrets.AZURE_CLIENT_ID, secrets.AZURE_CLIENT_SECRET, secrets.AZURE_SUBSCRIPTION_ID, secrets.AZURE_TENANT_ID)
2024-05-22T19:23:03.0625923Z ##[debug]Evaluating format:
2024-05-22T19:23:03.0626278Z ##[debug]..Evaluating String:
2024-05-22T19:23:03.0626808Z ##[debug]..=> '{{"clientId":"{0}","clientSecret":"{1}","subscriptionId":"{2}","tenantId":"{3}"}}'
2024-05-22T19:23:03.0627492Z ##[debug]..Evaluating Index:
2024-05-22T19:23:03.0627830Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:03.0628180Z ##[debug]....=> Object
2024-05-22T19:23:03.0628493Z ##[debug]....Evaluating String:
2024-05-22T19:23:03.0628851Z ##[debug]....=> 'AZURE_CLIENT_ID'
2024-05-22T19:23:03.0629438Z ##[debug]..=> '***'
2024-05-22T19:23:03.0629787Z ##[debug]..Evaluating Index:
2024-05-22T19:23:03.0630135Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:03.0630473Z ##[debug]....=> Object
2024-05-22T19:23:03.0630790Z ##[debug]....Evaluating String:
2024-05-22T19:23:03.0631137Z ##[debug]....=> 'AZURE_CLIENT_SECRET'
2024-05-22T19:23:03.0631650Z ##[debug]..=> '***'
2024-05-22T19:23:03.0631968Z ##[debug]..Evaluating Index:
2024-05-22T19:23:03.0632299Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:03.0632635Z ##[debug]....=> Object
2024-05-22T19:23:03.0632946Z ##[debug]....Evaluating String:
2024-05-22T19:23:03.0633301Z ##[debug]....=> 'AZURE_SUBSCRIPTION_ID'
2024-05-22T19:23:03.0633815Z ##[debug]..=> '***'
2024-05-22T19:23:03.0634123Z ##[debug]..Evaluating Index:
2024-05-22T19:23:03.0634446Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:03.0635071Z ##[debug]....=> Object
2024-05-22T19:23:03.0635502Z ##[debug]....Evaluating String:
2024-05-22T19:23:03.0635859Z ##[debug]....=> 'AZURE_TENANT_ID'
2024-05-22T19:23:03.0636303Z ##[debug]..=> '***'
2024-05-22T19:23:03.0637419Z ##[debug]=> '{"clientId":"***","clientSecret":"***","subscriptionId":"***","tenantId":"***"}'
2024-05-22T19:23:03.0638782Z ##[debug]Result: '{"clientId":"***","clientSecret":"***","subscriptionId":"***","tenantId":"***"}'
2024-05-22T19:23:03.0649236Z ##[group]Run azure/login@v2
2024-05-22T19:23:03.0649601Z with:
2024-05-22T19:23:03.0650672Z creds: {"clientId":"***","clientSecret":"***","subscriptionId":"***","tenantId":"***"}
2024-05-22T19:23:03.0651226Z enable-AzPSSession: false
2024-05-22T19:23:03.0651553Z environment: azurecloud
2024-05-22T19:23:03.0651886Z allow-no-subscriptions: false
2024-05-22T19:23:03.0652260Z audience: api://AzureADTokenExchange
2024-05-22T19:23:03.0652652Z auth-type: SERVICE_PRINCIPAL
2024-05-22T19:23:03.0653449Z ##[endgroup]
2024-05-22T19:23:03.1052232Z ##[debug]Reading creds in JSON...
2024-05-22T19:23:03.1056267Z ::add-mask::***
2024-05-22T19:23:03.1057761Z ::add-mask::***
2024-05-22T19:23:03.1070218Z Running Azure CLI Login.
2024-05-22T19:23:03.1111298Z ##[debug]Azure CLI path: /usr/bin/az
2024-05-22T19:23:03.7333396Z ##[debug]Azure CLI version used:
2024-05-22T19:23:03.7334108Z ##[debug]azure-cli 2.60.0 *
2024-05-22T19:23:03.7334772Z ##[debug]
2024-05-22T19:23:03.7335271Z ##[debug]core 2.60.0 *
2024-05-22T19:23:03.7335994Z ##[debug]telemetry 1.1.0
2024-05-22T19:23:03.7336614Z ##[debug]
2024-05-22T19:23:03.7337021Z ##[debug]Extensions:
2024-05-22T19:23:03.7337979Z ##[debug]azure-devops 1.0.1
2024-05-22T19:23:03.7338630Z ##[debug]
2024-05-22T19:23:03.7339044Z ##[debug]Dependencies:
2024-05-22T19:23:03.7339587Z ##[debug]msal 1.28.0
2024-05-22T19:23:03.7340308Z ##[debug]azure-mgmt-resource 23.1.0b2
2024-05-22T19:23:03.7340979Z ##[debug]
2024-05-22T19:23:03.7341497Z ##[debug]Python location '/opt/az/bin/python3'
2024-05-22T19:23:03.7342352Z ##[debug]Extensions directory '/opt/az/azcliextensions'
2024-05-22T19:23:03.7343069Z ##[debug]
2024-05-22T19:23:03.7343735Z ##[debug]Python (Linux) 3.11.8 (main, Apr 24 2024, 04:14:09) [GCC 11.4.0]
2024-05-22T19:23:03.7344538Z ##[debug]
2024-05-22T19:23:03.7345081Z ##[debug]Legal docs and information: aka.ms/AzureCliLegal
2024-05-22T19:23:03.7345796Z ##[debug]
2024-05-22T19:23:03.7346205Z ##[debug]
2024-05-22T19:23:03.7346589Z ##[debug]
2024-05-22T19:23:03.7390433Z [command]/usr/bin/az cloud set -n azurecloud
2024-05-22T19:23:04.0717683Z Done setting cloud: "azurecloud"
2024-05-22T19:23:04.0799190Z Note: Azure/login action also supports OIDC login mechanism. Refer https://github.com/azure/login#configure-a-service-principal-with-a-federated-credential-to-use-oidc-based-authentication for more details.
2024-05-22T19:23:04.0802113Z Attempting Azure CLI login by using service principal with secret...
2024-05-22T19:23:05.5461017Z Subscription is set successfully.
2024-05-22T19:23:05.5461872Z Azure CLI login succeeds by using service principal with secret.
2024-05-22T19:23:05.5590543Z ##[debug]Node Action run completed with exit code 0
2024-05-22T19:23:05.5594698Z ##[debug]Finishing: Login via Azure CLI
2024-05-22T19:23:05.5608270Z ##[debug]Evaluating condition for step: 'Run sudo systemctl daemon-reload'
2024-05-22T19:23:05.5610776Z ##[debug]Evaluating: success()
2024-05-22T19:23:05.5611646Z ##[debug]Evaluating success:
2024-05-22T19:23:05.5612501Z ##[debug]=> true
2024-05-22T19:23:05.5613355Z ##[debug]Result: true
2024-05-22T19:23:06.4181227Z ##[debug]Starting: Build and push image to ACR
2024-05-22T19:23:06.4193181Z ##[debug]Register post job cleanup for action: docker/login-action@v3
2024-05-22T19:23:06.4204302Z ##[debug]Loading inputs
2024-05-22T19:23:06.4205454Z ##[debug]Evaluating: secrets.REGISTRY_LOGIN_SERVER
2024-05-22T19:23:06.4205895Z ##[debug]Evaluating Index:
2024-05-22T19:23:06.4206227Z ##[debug]..Evaluating secrets:
2024-05-22T19:23:06.4206562Z ##[debug]..=> Object
2024-05-22T19:23:06.4206876Z ##[debug]..Evaluating String:
2024-05-22T19:23:06.4207251Z ##[debug]..=> 'REGISTRY_LOGIN_SERVER'
2024-05-22T19:23:06.4208026Z ##[debug]=> '***'
2024-05-22T19:23:06.4208374Z ##[debug]Result: '***'
2024-05-22T19:23:06.4208920Z ##[debug]Evaluating: secrets.REGISTRY_USERNAME
2024-05-22T19:23:06.4209329Z ##[debug]Evaluating Index:
2024-05-22T19:23:06.4209650Z ##[debug]..Evaluating secrets:
2024-05-22T19:23:06.4209983Z ##[debug]..=> Object
2024-05-22T19:23:06.4210286Z ##[debug]..Evaluating String:
2024-05-22T19:23:06.4210621Z ##[debug]..=> 'REGISTRY_USERNAME'
2024-05-22T19:23:06.4210988Z ##[debug]=> '***'
2024-05-22T19:23:06.4211281Z ##[debug]Result: '***'
2024-05-22T19:23:06.4211727Z ##[debug]Evaluating: secrets.REGISTRY_PASSWORD
2024-05-22T19:23:06.4212124Z ##[debug]Evaluating Index:
2024-05-22T19:23:06.4212558Z ##[debug]..Evaluating secrets:
2024-05-22T19:23:06.4212959Z ##[debug]..=> Object
2024-05-22T19:23:06.4213283Z ##[debug]..Evaluating String:
2024-05-22T19:23:06.4213614Z ##[debug]..=> 'REGISTRY_PASSWORD'
2024-05-22T19:23:06.4214126Z ##[debug]=> '***'
2024-05-22T19:23:06.4214592Z ##[debug]Result: '***'
2024-05-22T19:23:06.4216213Z ##[debug]Loading env
2024-05-22T19:23:06.4221400Z ##[group]Run docker/login-action@v3
2024-05-22T19:23:06.4221739Z with:
2024-05-22T19:23:06.4222013Z registry: ***
2024-05-22T19:23:06.4222290Z username: ***
2024-05-22T19:23:06.4222712Z password: ***
2024-05-22T19:23:06.4222973Z ecr: auto
2024-05-22T19:23:06.4223225Z logout: true
2024-05-22T19:23:06.4223957Z ##[endgroup]
2024-05-22T19:23:06.5416147Z Logging into ***...
2024-05-22T19:23:06.5422776Z ##[debug]Exec.getExecOutput: docker login --password-stdin --username *** ***
2024-05-22T19:23:06.7220543Z ##[error]Error response from daemon: Get "https://***/v2/": dial tcp: lookup *** on 127.0.0.53:53: no such host
2024-05-22T19:23:06.7343999Z ##[debug]Node Action run completed with exit code 1
2024-05-22T19:23:06.7347293Z ##[debug]Save intra-action state isPost = true
2024-05-22T19:23:06.7347885Z ##[debug]Save intra-action state registry = ***
2024-05-22T19:23:06.7348348Z ##[debug]Save intra-action state logout = true
2024-05-22T19:23:06.7351594Z ##[debug]Finishing: Build and push image to ACR
2024-05-22T19:23:06.7361999Z ##[debug]Evaluating condition for step: 'Run # Using version-commit id to make it easier to identify what is in the container'
2024-05-22T19:23:06.7366089Z ##[debug]Evaluating: format('# Using version-commit id to make it easier to identify what is in the container
2024-05-22T19:23:06.7366864Z ##[debug]docker build . -t {0}/{1}:{2}-{3} --platform=linux/amd64
2024-05-22T19:23:06.7367349Z ##[debug]docker push {4}/{5}:{6}-{7}
2024-05-22T19:23:06.7368606Z ##[debug]', secrets.REGISTRY_LOGIN_SERVER, env.image_name, steps.versioning.outputs.version_tag, steps.commit_sha.outputs.short_sha, secrets.REGISTRY_LOGIN_SERVER, env.image_name, steps.versioning.outputs.version_tag, steps.commit_sha.outputs.short_sha)
2024-05-22T19:23:06.7369844Z ##[debug]Evaluating format:
2024-05-22T19:23:06.7370229Z ##[debug]..Evaluating String:
2024-05-22T19:23:06.7371128Z ##[debug]..=> '# Using version-commit id to make it easier to identify what is in the container
2024-05-22T19:23:06.7371885Z ##[debug]docker build . -t {0}/{1}:{2}-{3} --platform=linux/amd64
2024-05-22T19:23:06.7372361Z ##[debug]docker push {4}/{5}:{6}-{7}
2024-05-22T19:23:06.7372695Z ##[debug]'
2024-05-22T19:23:06.7373079Z ##[debug]..Evaluating Index:
2024-05-22T19:23:06.7373443Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:06.7373786Z ##[debug]....=> Object
2024-05-22T19:23:06.7374104Z ##[debug]....Evaluating String:
2024-05-22T19:23:06.7374452Z ##[debug]....=> 'REGISTRY_LOGIN_SERVER'
2024-05-22T19:23:06.7374876Z ##[debug]..=> '***'
2024-05-22T19:23:06.7375206Z ##[debug]..Evaluating Index:
2024-05-22T19:23:06.7375530Z ##[debug]....Evaluating env:
2024-05-22T19:23:06.7375833Z ##[debug]....=> Object
2024-05-22T19:23:06.7376132Z ##[debug]....Evaluating String:
2024-05-22T19:23:06.7376466Z ##[debug]....=> 'image_name'
2024-05-22T19:23:06.7376835Z ##[debug]..=> null
2024-05-22T19:23:06.7377139Z ##[debug]..Evaluating Index:
2024-05-22T19:23:06.7377460Z ##[debug]....Evaluating Index:
2024-05-22T19:23:06.7377786Z ##[debug]......Evaluating Index:
2024-05-22T19:23:06.7378131Z ##[debug]........Evaluating steps:
2024-05-22T19:23:06.7378476Z ##[debug]........=> Object
2024-05-22T19:23:06.7378793Z ##[debug]........Evaluating String:
2024-05-22T19:23:06.7379148Z ##[debug]........=> 'versioning'
2024-05-22T19:23:06.7379483Z ##[debug]......=> Object
2024-05-22T19:23:06.7379789Z ##[debug]......Evaluating String:
2024-05-22T19:23:06.7380130Z ##[debug]......=> 'outputs'
2024-05-22T19:23:06.7380444Z ##[debug]....=> Object
2024-05-22T19:23:06.7380740Z ##[debug]....Evaluating String:
2024-05-22T19:23:06.7381078Z ##[debug]....=> 'version_tag'
2024-05-22T19:23:06.7381401Z ##[debug]..=> 'v0.0.1'
2024-05-22T19:23:06.7381705Z ##[debug]..Evaluating Index:
2024-05-22T19:23:06.7382022Z ##[debug]....Evaluating Index:
2024-05-22T19:23:06.7382345Z ##[debug]......Evaluating Index:
2024-05-22T19:23:06.7382684Z ##[debug]........Evaluating steps:
2024-05-22T19:23:06.7383021Z ##[debug]........=> Object
2024-05-22T19:23:06.7383337Z ##[debug]........Evaluating String:
2024-05-22T19:23:06.7383694Z ##[debug]........=> 'commit_sha'
2024-05-22T19:23:06.7384014Z ##[debug]......=> Object
2024-05-22T19:23:06.7384319Z ##[debug]......Evaluating String:
2024-05-22T19:23:06.7384656Z ##[debug]......=> 'outputs'
2024-05-22T19:23:06.7384962Z ##[debug]....=> Object
2024-05-22T19:23:06.7385260Z ##[debug]....Evaluating String:
2024-05-22T19:23:06.7385580Z ##[debug]....=> 'short_sha'
2024-05-22T19:23:06.7385895Z ##[debug]..=> '2cbbade'
2024-05-22T19:23:06.7386206Z ##[debug]..Evaluating Index:
2024-05-22T19:23:06.7386523Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:06.7386856Z ##[debug]....=> Object
2024-05-22T19:23:06.7387144Z ##[debug]....Evaluating String:
2024-05-22T19:23:06.7387489Z ##[debug]....=> 'REGISTRY_LOGIN_SERVER'
2024-05-22T19:23:06.7387901Z ##[debug]..=> '***'
2024-05-22T19:23:06.7388198Z ##[debug]..Evaluating Index:
2024-05-22T19:23:06.7388539Z ##[debug]....Evaluating env:
2024-05-22T19:23:06.7388850Z ##[debug]....=> Object
2024-05-22T19:23:06.7389149Z ##[debug]....Evaluating String:
2024-05-22T19:23:06.7389657Z ##[debug]....=> 'image_name'
2024-05-22T19:23:06.7389984Z ##[debug]..=> null
2024-05-22T19:23:06.7390275Z ##[debug]..Evaluating Index:
2024-05-22T19:23:06.7390596Z ##[debug]....Evaluating Index:
2024-05-22T19:23:06.7390919Z ##[debug]......Evaluating Index:
2024-05-22T19:23:06.7391261Z ##[debug]........Evaluating steps:
2024-05-22T19:23:06.7391605Z ##[debug]........=> Object
2024-05-22T19:23:06.7391925Z ##[debug]........Evaluating String:
2024-05-22T19:23:06.7392283Z ##[debug]........=> 'versioning'
2024-05-22T19:23:06.7392608Z ##[debug]......=> Object
2024-05-22T19:23:06.7392919Z ##[debug]......Evaluating String:
2024-05-22T19:23:06.7393253Z ##[debug]......=> 'outputs'
2024-05-22T19:23:06.7393557Z ##[debug]....=> Object
2024-05-22T19:23:06.7393859Z ##[debug]....Evaluating String:
2024-05-22T19:23:06.7394319Z ##[debug]....=> 'version_tag'
2024-05-22T19:23:06.7394644Z ##[debug]..=> 'v0.0.1'
2024-05-22T19:23:06.7395229Z ##[debug]..Evaluating Index:
2024-05-22T19:23:06.7395566Z ##[debug]....Evaluating Index:
2024-05-22T19:23:06.7395928Z ##[debug]......Evaluating Index:
2024-05-22T19:23:06.7396263Z ##[debug]........Evaluating steps:
2024-05-22T19:23:06.7396604Z ##[debug]........=> Object
2024-05-22T19:23:06.7396927Z ##[debug]........Evaluating String:
2024-05-22T19:23:06.7397275Z ##[debug]........=> 'commit_sha'
2024-05-22T19:23:06.7397603Z ##[debug]......=> Object
2024-05-22T19:23:06.7397919Z ##[debug]......Evaluating String:
2024-05-22T19:23:06.7398252Z ##[debug]......=> 'outputs'
2024-05-22T19:23:06.7398555Z ##[debug]....=> Object
2024-05-22T19:23:06.7398847Z ##[debug]....Evaluating String:
2024-05-22T19:23:06.7399172Z ##[debug]....=> 'short_sha'
2024-05-22T19:23:06.7399486Z ##[debug]..=> '2cbbade'
2024-05-22T19:23:06.7400033Z ##[debug]=> '# Using version-commit id to make it easier to identify what is in the container
2024-05-22T19:23:06.7400822Z ##[debug]docker build . -t ***/:v0.0.1-2cbbade --platform=linux/amd64
2024-05-22T19:23:06.7401394Z ##[debug]docker push ***/:v0.0.1-2cbbade
2024-05-22T19:23:06.7401741Z ##[debug]'
2024-05-22T19:23:06.7402269Z ##[debug]Result: '# Using version-commit id to make it easier to identify what is in the container
2024-05-22T19:23:06.7403061Z ##[debug]docker build . -t ***/:v0.0.1-2cbbade --platform=linux/amd64
2024-05-22T19:23:06.7403597Z ##[debug]docker push ***/:v0.0.1-2cbbade
2024-05-22T19:23:06.7403935Z ##[debug]'
2024-05-22T19:23:06.7404976Z ##[debug]Set step '__run_2' display name to: 'Run # Using version-commit id to make it easier to identify what is in the container'
2024-05-22T19:23:06.7407632Z ##[debug]Evaluating: success()
2024-05-22T19:23:06.7408148Z ##[debug]Evaluating success:
2024-05-22T19:23:06.7408624Z ##[debug]=> false
2024-05-22T19:23:06.7409117Z ##[debug]Result: false
2024-05-22T19:23:06.7414580Z ##[debug]Evaluating condition for step: 'Push to Azure App Service'
2024-05-22T19:23:06.7415611Z ##[debug]Evaluating: success()
2024-05-22T19:23:06.7416062Z ##[debug]Evaluating success:
2024-05-22T19:23:06.7416514Z ##[debug]=> false
2024-05-22T19:23:06.7416984Z ##[debug]Result: false
2024-05-22T19:23:06.7422528Z ##[debug]Evaluating condition for step: 'Post Build and push image to ACR'
2024-05-22T19:23:06.7423733Z ##[debug]Evaluating: always()
2024-05-22T19:23:06.7424192Z ##[debug]Evaluating always:
2024-05-22T19:23:06.7424602Z ##[debug]=> true
2024-05-22T19:23:06.7425060Z ##[debug]Result: true
2024-05-22T19:23:06.7425673Z ##[debug]Starting: Post Build and push image to ACR
2024-05-22T19:23:06.7444512Z ##[debug]Loading inputs
2024-05-22T19:23:06.7445535Z ##[debug]Evaluating: secrets.REGISTRY_LOGIN_SERVER
2024-05-22T19:23:06.7445986Z ##[debug]Evaluating Index:
2024-05-22T19:23:06.7446320Z ##[debug]..Evaluating secrets:
2024-05-22T19:23:06.7446654Z ##[debug]..=> Object
2024-05-22T19:23:06.7446965Z ##[debug]..Evaluating String:
2024-05-22T19:23:06.7447392Z ##[debug]..=> 'REGISTRY_LOGIN_SERVER'
2024-05-22T19:23:06.7447813Z ##[debug]=> '***'
2024-05-22T19:23:06.7448152Z ##[debug]Result: '***'
2024-05-22T19:23:06.7448639Z ##[debug]Evaluating: secrets.REGISTRY_USERNAME
2024-05-22T19:23:06.7449084Z ##[debug]Evaluating Index:
2024-05-22T19:23:06.7449404Z ##[debug]..Evaluating secrets:
2024-05-22T19:23:06.7449734Z ##[debug]..=> Object
2024-05-22T19:23:06.7450060Z ##[debug]..Evaluating String:
2024-05-22T19:23:06.7450405Z ##[debug]..=> 'REGISTRY_USERNAME'
2024-05-22T19:23:06.7450759Z ##[debug]=> '***'
2024-05-22T19:23:06.7451050Z ##[debug]Result: '***'
2024-05-22T19:23:06.7451489Z ##[debug]Evaluating: secrets.REGISTRY_PASSWORD
2024-05-22T19:23:06.7451880Z ##[debug]Evaluating Index:
2024-05-22T19:23:06.7452192Z ##[debug]..Evaluating secrets:
2024-05-22T19:23:06.7452516Z ##[debug]..=> Object
2024-05-22T19:23:06.7452807Z ##[debug]..Evaluating String:
2024-05-22T19:23:06.7453133Z ##[debug]..=> 'REGISTRY_PASSWORD'
2024-05-22T19:23:06.7453618Z ##[debug]=> '***'
2024-05-22T19:23:06.7454277Z ##[debug]Result: '***'
2024-05-22T19:23:06.7455914Z ##[debug]Loading env
2024-05-22T19:23:06.7460990Z Post job cleanup.
2024-05-22T19:23:06.8621995Z ##[debug]Exec.getExecOutput: docker logout ***
2024-05-22T19:23:06.8690452Z [command]/usr/bin/docker logout ***
2024-05-22T19:23:06.8862280Z Removing login credentials for ***
2024-05-22T19:23:06.9025678Z ##[debug]Node Action run completed with exit code 0
2024-05-22T19:23:06.9028132Z ##[debug]Finishing: Post Build and push image to ACR
2024-05-22T19:23:06.9035673Z ##[debug]Evaluating condition for step: 'Post Checkout GitHub Repo'
2024-05-22T19:23:06.9037076Z ##[debug]Evaluating: always()
2024-05-22T19:23:06.9037556Z ##[debug]Evaluating always:
2024-05-22T19:23:06.9037978Z ##[debug]=> true
2024-05-22T19:23:06.9038452Z ##[debug]Result: true
2024-05-22T19:23:06.9039087Z ##[debug]Starting: Post Checkout GitHub Repo
2024-05-22T19:23:06.9070804Z ##[debug]Loading inputs
2024-05-22T19:23:06.9071743Z ##[debug]Evaluating: github.repository
2024-05-22T19:23:06.9072168Z ##[debug]Evaluating Index:
2024-05-22T19:23:06.9072513Z ##[debug]..Evaluating github:
2024-05-22T19:23:06.9072860Z ##[debug]..=> Object
2024-05-22T19:23:06.9073184Z ##[debug]..Evaluating String:
2024-05-22T19:23:06.9073518Z ##[debug]..=> 'repository'
2024-05-22T19:23:06.9073905Z ##[debug]=> 'CGFNSOrg/IntegrationAPI'
2024-05-22T19:23:06.9074347Z ##[debug]Result: 'CGFNSOrg/IntegrationAPI'
2024-05-22T19:23:06.9077951Z ##[debug]Evaluating: github.token
2024-05-22T19:23:06.9078920Z ##[debug]Evaluating Index:
2024-05-22T19:23:06.9079492Z ##[debug]..Evaluating github:
2024-05-22T19:23:06.9080060Z ##[debug]..=> Object
2024-05-22T19:23:06.9080572Z ##[debug]..Evaluating String:
2024-05-22T19:23:06.9081088Z ##[debug]..=> 'token'
2024-05-22T19:23:06.9081766Z ##[debug]=> '***'
2024-05-22T19:23:06.9082478Z ##[debug]Result: '***'
2024-05-22T19:23:06.9097193Z ##[debug]Loading env
2024-05-22T19:23:06.9102458Z Post job cleanup.
2024-05-22T19:23:07.0107485Z ##[debug]Getting git version
2024-05-22T19:23:07.0136611Z [command]/usr/bin/git version
2024-05-22T19:23:07.0204710Z git version 2.45.1
2024-05-22T19:23:07.0296414Z ##[debug]0
2024-05-22T19:23:07.0297585Z ##[debug]git version 2.45.1
2024-05-22T19:23:07.0298130Z ##[debug]
2024-05-22T19:23:07.0299720Z ##[debug]Set git useragent to: git/2.45.1 (github-actions-checkout)
2024-05-22T19:23:07.0302293Z ::add-mask::***
2024-05-22T19:23:07.0367470Z Temporarily overriding HOME='/home/runner/work/_temp/dbafb448-09b1-4131-8232-557a59e049d5' before making global git config changes
2024-05-22T19:23:07.0369696Z Adding repository directory to the temporary git global config as a safe directory
2024-05-22T19:23:07.0374730Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/IntegrationAPI/IntegrationAPI
2024-05-22T19:23:07.0522713Z ##[debug]0
2024-05-22T19:23:07.0523994Z ##[debug]
2024-05-22T19:23:07.0533052Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2024-05-22T19:23:07.0657175Z ##[debug]1
2024-05-22T19:23:07.0658352Z ##[debug]
2024-05-22T19:23:07.0660689Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2024-05-22T19:23:07.1088690Z ##[debug]0
2024-05-22T19:23:07.1089810Z ##[debug]
2024-05-22T19:23:07.1097517Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2024-05-22T19:23:07.1141529Z http.https://github.com/.extraheader
2024-05-22T19:23:07.1155957Z ##[debug]0
2024-05-22T19:23:07.1157111Z ##[debug]http.https://github.com/.extraheader
2024-05-22T19:23:07.1157757Z ##[debug]
2024-05-22T19:23:07.1174881Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2024-05-22T19:23:07.1225334Z ##[debug]0
2024-05-22T19:23:07.1226307Z ##[debug]
2024-05-22T19:23:07.1228741Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2024-05-22T19:23:07.1538187Z ##[debug]0
2024-05-22T19:23:07.1539415Z ##[debug]
2024-05-22T19:23:07.1540635Z ##[debug]Unsetting HOME override
2024-05-22T19:23:07.1708165Z ##[debug]Node Action run completed with exit code 0
2024-05-22T19:23:07.1710648Z ##[debug]Finishing: Post Checkout GitHub Repo
2024-05-22T19:23:07.1719354Z ##[debug]Evaluating condition for step: 'Post Login via Azure CLI'
2024-05-22T19:23:07.1720769Z ##[debug]Evaluating: always()
2024-05-22T19:23:07.1721249Z ##[debug]Evaluating always:
2024-05-22T19:23:07.1721692Z ##[debug]=> true
2024-05-22T19:23:07.1722181Z ##[debug]Result: true
2024-05-22T19:23:07.1722825Z ##[debug]Starting: Post Login via Azure CLI
2024-05-22T19:23:07.1746107Z ##[debug]Loading inputs
2024-05-22T19:23:07.1747948Z ##[debug]Evaluating: format('{{"clientId":"{0}","clientSecret":"{1}","subscriptionId":"{2}","tenantId":"{3}"}}', secrets.AZURE_CLIENT_ID, secrets.AZURE_CLIENT_SECRET, secrets.AZURE_SUBSCRIPTION_ID, secrets.AZURE_TENANT_ID)
2024-05-22T19:23:07.1749003Z ##[debug]Evaluating format:
2024-05-22T19:23:07.1749345Z ##[debug]..Evaluating String:
2024-05-22T19:23:07.1749887Z ##[debug]..=> '{{"clientId":"{0}","clientSecret":"{1}","subscriptionId":"{2}","tenantId":"{3}"}}'
2024-05-22T19:23:07.1750512Z ##[debug]..Evaluating Index:
2024-05-22T19:23:07.1750880Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:07.1751238Z ##[debug]....=> Object
2024-05-22T19:23:07.1751556Z ##[debug]....Evaluating String:
2024-05-22T19:23:07.1751913Z ##[debug]....=> 'AZURE_CLIENT_ID'
2024-05-22T19:23:07.1752561Z ##[debug]..=> '***'
2024-05-22T19:23:07.1752875Z ##[debug]..Evaluating Index:
2024-05-22T19:23:07.1753213Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:07.1753561Z ##[debug]....=> Object
2024-05-22T19:23:07.1753870Z ##[debug]....Evaluating String:
2024-05-22T19:23:07.1754227Z ##[debug]....=> 'AZURE_CLIENT_SECRET'
2024-05-22T19:23:07.1754724Z ##[debug]..=> '***'
2024-05-22T19:23:07.1755438Z ##[debug]..Evaluating Index:
2024-05-22T19:23:07.1755799Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:07.1756154Z ##[debug]....=> Object
2024-05-22T19:23:07.1756473Z ##[debug]....Evaluating String:
2024-05-22T19:23:07.1756845Z ##[debug]....=> 'AZURE_SUBSCRIPTION_ID'
2024-05-22T19:23:07.1757308Z ##[debug]..=> '***'
2024-05-22T19:23:07.1757615Z ##[debug]..Evaluating Index:
2024-05-22T19:23:07.1757962Z ##[debug]....Evaluating secrets:
2024-05-22T19:23:07.1758300Z ##[debug]....=> Object
2024-05-22T19:23:07.1758604Z ##[debug]....Evaluating String:
2024-05-22T19:23:07.1758949Z ##[debug]....=> 'AZURE_TENANT_ID'
2024-05-22T19:23:07.1759382Z ##[debug]..=> '***'
2024-05-22T19:23:07.1760503Z ##[debug]=> '{"clientId":"***","clientSecret":"***","subscriptionId":"***","tenantId":"***"}'
2024-05-22T19:23:07.1761884Z ##[debug]Result: '{"clientId":"***","clientSecret":"***","subscriptionId":"***","tenantId":"***"}'
2024-05-22T19:23:07.1766940Z ##[debug]Loading env
2024-05-22T19:23:07.1772162Z Post job cleanup.
2024-05-22T19:23:07.2195345Z ##[debug]Azure CLI path: /usr/bin/az
2024-05-22T19:23:07.2198155Z Clearing azure cli accounts from the local cache.
2024-05-22T19:23:07.2213611Z [command]/usr/bin/az account clear
2024-05-22T19:23:07.7030946Z ##[debug]Node Action run completed with exit code 0
2024-05-22T19:23:07.7036574Z ##[debug]Finishing: Post Login via Azure CLI
2024-05-22T19:23:07.7267167Z ##[debug]Starting: Complete job
2024-05-22T19:23:07.7269486Z Cleaning up orphan processes
2024-05-22T19:23:07.8150982Z Terminate orphan process: pid (2896) (python3)
2024-05-22T19:23:07.8163759Z ##[debug]Finishing: Complete job
2024-05-22T19:23:07.8277687Z ##[debug]Finishing: Build Container and push to Container Registry
BuildKit logs
No response
Additional info
No response