token_format: access_token fails with OIDC auth

This issue has been tracked since 2022-06-02.

TL;DR

When I specify token_format: access_token, my Github Action fails. Removing token_format: access_token causes the step to succeed, but then I don't have the access_token I need to push my Docker image to GAR.

Expected behavior

I would get an access_token that would be available in future steps.

Observed behavior

The step failed saying that permission was denied.

Action YAML

name: publish-image

on:
  push:
    branches:
      - 'build_container_in_gh_action'
jobs:
  publish-image:
    runs-on: ubuntu-latest
    permissions:
      contents: 'read'
      id-token: 'write'

    steps:
    - name: Set up QEMU
      uses: docker/[email protected]
    - name: Set up Docker Buildx
      uses: docker/[email protected]
    # Checks-out the repository under $GITHUB_WORKSPACE
    - uses: actions/[email protected]
      with:
        fetch-depth: 0
    - id: 'auth'
      uses: 'google-github-actions/[email protected]'
      with:
        workload_identity_provider: 'projects/<PROJECT_NUMBER>/locations/global/workloadIdentityPools/publish-image-gh-action/providers/publish-image-gh-action'
        service_account: '[email protected]'
        token_format: 'access_token'
    - uses: 'docker/[email protected]'
      with:
        registry: 'us-central1-docker.pkg.dev'
        username: 'oauth2accesstoken'
        password: '${{ steps.auth.outputs.access_token }}'
    - uses: docker/[email protected]
      with:
        push: true
        file: build/Dockerfile
        tags: os-packagesctl:latest


### Log output

```text
2022-06-02T17:46:39.3766712Z Requested labels: ubuntu-latest
2022-06-02T17:46:39.3766755Z Job defined at: <REPO_NAME>/.github/workflows/[email protected]/heads/build_container_in_gh_action
2022-06-02T17:46:39.3766776Z Waiting for a runner to pick up this job...
2022-06-02T17:46:39.9811747Z Job is waiting for a hosted runner to come online.
2022-06-02T17:46:46.1769284Z Job is about to start running on the hosted runner: Hosted Agent (hosted)
2022-06-02T17:46:50.5222373Z Current runner version: '2.291.1'
2022-06-02T17:46:50.5247900Z ##[group]Operating System
2022-06-02T17:46:50.5248404Z Ubuntu
2022-06-02T17:46:50.5248688Z 20.04.4
2022-06-02T17:46:50.5248956Z LTS
2022-06-02T17:46:50.5249196Z ##[endgroup]
2022-06-02T17:46:50.5249697Z ##[group]Virtual Environment
2022-06-02T17:46:50.5250061Z Environment: ubuntu-20.04
2022-06-02T17:46:50.5250347Z Version: 20220529.1
2022-06-02T17:46:50.5250857Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20220529.1/images/linux/Ubuntu2004-Readme.md
2022-06-02T17:46:50.5251554Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20220529.1
2022-06-02T17:46:50.5252004Z ##[endgroup]
2022-06-02T17:46:50.5252311Z ##[group]Virtual Environment Provisioner
2022-06-02T17:46:50.5252676Z 1.0.0.0-main-20220516-1
2022-06-02T17:46:50.5253010Z ##[endgroup]
2022-06-02T17:46:50.5253629Z ##[group]GITHUB_TOKEN Permissions
2022-06-02T17:46:50.5254149Z Contents: read
2022-06-02T17:46:50.5254595Z Metadata: read
2022-06-02T17:46:50.5254956Z ##[endgroup]
2022-06-02T17:46:50.5258182Z Secret source: Actions
2022-06-02T17:46:50.5258718Z Prepare workflow directory
2022-06-02T17:46:50.6058756Z Prepare all required actions
2022-06-02T17:46:50.6221263Z Getting action download info
2022-06-02T17:46:51.0056073Z Download action repository 'docker/[email protected]' (SHA:8b122486cedac8393e77aa9734c3528886e4a1a8)
2022-06-02T17:46:52.2255007Z Download action repository 'docker/[email protected]' (SHA:dc7b9719a96d48369863986a06765841d7ea23f6)
2022-06-02T17:46:52.6879090Z Download action repository 'actions/[email protected]' (SHA:7884fcad6b5d53d10323aee724dc68d8b9096a2e)
2022-06-02T17:46:53.2089523Z Download action repository 'google-github-actions/[email protected]' (SHA:ceee102ec2387dd9e844e01b530ccd4ec87ce955)
2022-06-02T17:46:53.6424387Z Download action repository 'docker/[email protected]' (SHA:49ed152c8eca782a232dede0303416e8f356c37b)
2022-06-02T17:46:54.1517659Z Download action repository 'docker/[email protected]' (SHA:e551b19e49efd4e98792db7592c17c09b89db8d8)
2022-06-02T17:46:54.8714214Z ##[group]Run docker/[email protected]
2022-06-02T17:46:54.8714502Z with:
2022-06-02T17:46:54.8714702Z   image: tonistiigi/binfmt:latest
2022-06-02T17:46:54.8714894Z   platforms: all
2022-06-02T17:46:54.8715077Z ##[endgroup]
2022-06-02T17:46:56.4985546Z ##[group]Docker info
2022-06-02T17:46:56.5030071Z [command]/usr/bin/docker version
2022-06-02T17:46:58.4051139Z Client:
2022-06-02T17:46:58.4054629Z  Version:           20.10.16+azure-3
2022-06-02T17:46:58.4060936Z  API version:       1.41
2022-06-02T17:46:58.4061610Z  Go version:        go1.17.10
2022-06-02T17:46:58.4062195Z  Git commit:        aa7e414fdcb23a66e8fabbef0a560ef1769eace5
2022-06-02T17:46:58.4062544Z  Built:             Wed May 11 16:22:17 UTC 2022
2022-06-02T17:46:58.4063001Z  OS/Arch:           linux/amd64
2022-06-02T17:46:58.4063480Z  Context:           default
2022-06-02T17:46:58.4063971Z  Experimental:      true
2022-06-02T17:46:58.4064361Z 
2022-06-02T17:46:58.4065007Z Server:
2022-06-02T17:46:58.4071040Z  Engine:
2022-06-02T17:46:58.4071660Z   Version:          20.10.16+azure-2
2022-06-02T17:46:58.4072039Z   API version:      1.41 (minimum version 1.12)
2022-06-02T17:46:58.4072349Z   Go version:       go1.17.10
2022-06-02T17:46:58.4072882Z   Git commit:       f756502055d2e36a84f2068e6620bea5ecf09058
2022-06-02T17:46:58.4073315Z   Built:            Thu May 12 07:33:06 2022
2022-06-02T17:46:58.4073797Z   OS/Arch:          linux/amd64
2022-06-02T17:46:58.4074251Z   Experimental:     false
2022-06-02T17:46:58.4074699Z  containerd:
2022-06-02T17:46:58.4075045Z   Version:          1.5.11+azure-1
2022-06-02T17:46:58.4075293Z   GitCommit:        3df54a852345ae127d1fa3092b95168e4a88e2f8
2022-06-02T17:46:58.4075685Z  runc:
2022-06-02T17:46:58.4076185Z   Version:          1.0.3
2022-06-02T17:46:58.4076756Z   GitCommit:        f46b6ba2c9314cfc8caae24a32ec5fe9ef1059fe
2022-06-02T17:46:58.4077123Z  docker-init:
2022-06-02T17:46:58.4077587Z   Version:          0.19.0
2022-06-02T17:46:58.4078173Z   GitCommit:        
2022-06-02T17:46:58.4118020Z [command]/usr/bin/docker info
2022-06-02T17:47:02.1365117Z Client:
2022-06-02T17:47:02.1365969Z  Context:    default
2022-06-02T17:47:02.1366321Z  Debug Mode: false
2022-06-02T17:47:02.1366669Z  Plugins:
2022-06-02T17:47:02.1367360Z   buildx: Docker Buildx (Docker Inc., 0.8.2+azure-1)
2022-06-02T17:47:02.1367917Z   compose: Docker Compose (Docker Inc., 2.4.1+azure-1)
2022-06-02T17:47:02.1368243Z 
2022-06-02T17:47:02.1368460Z Server:
2022-06-02T17:47:02.1368818Z  Containers: 0
2022-06-02T17:47:02.1369139Z   Running: 0
2022-06-02T17:47:02.1369446Z   Paused: 0
2022-06-02T17:47:02.1369752Z   Stopped: 0
2022-06-02T17:47:02.1370043Z  Images: 19
2022-06-02T17:47:02.1370421Z  Server Version: 20.10.16+azure-2
2022-06-02T17:47:02.1370779Z  Storage Driver: overlay2
2022-06-02T17:47:02.1371121Z   Backing Filesystem: extfs
2022-06-02T17:47:02.1371473Z   Supports d_type: true
2022-06-02T17:47:02.1371822Z   Native Overlay Diff: false
2022-06-02T17:47:02.1372178Z   userxattr: false
2022-06-02T17:47:02.1372568Z  Logging Driver: json-file
2022-06-02T17:47:02.1372922Z  Cgroup Driver: cgroupfs
2022-06-02T17:47:02.1373259Z  Cgroup Version: 1
2022-06-02T17:47:02.1373576Z  Plugins:
2022-06-02T17:47:02.1373870Z   Volume: local
2022-06-02T17:47:02.1374240Z   Network: bridge host ipvlan macvlan null overlay
2022-06-02T17:47:02.1374863Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2022-06-02T17:47:02.1375441Z  Swarm: inactive
2022-06-02T17:47:02.1375923Z  Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
2022-06-02T17:47:02.1376375Z  Default Runtime: runc
2022-06-02T17:47:02.1376777Z  Init Binary: docker-init
2022-06-02T17:47:02.1377186Z  containerd version: 3df54a852345ae127d1fa3092b95168e4a88e2f8
2022-06-02T17:47:02.1377667Z  runc version: f46b6ba2c9314cfc8caae24a32ec5fe9ef1059fe
2022-06-02T17:47:02.1378042Z  init version: 
2022-06-02T17:47:02.1378370Z  Security Options:
2022-06-02T17:47:02.1378855Z   apparmor
2022-06-02T17:47:02.1379166Z   seccomp
2022-06-02T17:47:02.1379793Z    Profile: default
2022-06-02T17:47:02.1380260Z  Kernel Version: 5.13.0-1025-azure
2022-06-02T17:47:02.1380627Z  Operating System: Ubuntu 20.04.4 LTS
2022-06-02T17:47:02.1380980Z  OSType: linux
2022-06-02T17:47:02.1381296Z  Architecture: x86_64
2022-06-02T17:47:02.1381616Z  CPUs: 2
2022-06-02T17:47:02.1381929Z  Total Memory: 6.784GiB
2022-06-02T17:47:02.1382316Z  Name: fv-az83-468
2022-06-02T17:47:02.1382779Z  ID: KHQM:5PAR:3WQG:34UF:ROLK:WTJW:SARG:XRYR:UA5O:7YXZ:H5UH:L2GN
2022-06-02T17:47:02.1383086Z  Docker Root Dir: /var/lib/docker
2022-06-02T17:47:02.1383359Z  Debug Mode: false
2022-06-02T17:47:02.1383628Z  Username: githubactions
2022-06-02T17:47:02.1383950Z  Registry: https://index.docker.io/v1/
2022-06-02T17:47:02.1384231Z  Labels:
2022-06-02T17:47:02.1384505Z  Experimental: false
2022-06-02T17:47:02.1385076Z  Insecure Registries:
2022-06-02T17:47:02.1385379Z   127.0.0.0/8
2022-06-02T17:47:02.1385584Z  Live Restore Enabled: false
2022-06-02T17:47:02.1385728Z 
2022-06-02T17:47:02.1414635Z ##[endgroup]
2022-06-02T17:47:02.1415770Z ##[group]Pulling binfmt Docker image
2022-06-02T17:47:02.1441858Z [command]/usr/bin/docker pull tonistiigi/binfmt:latest
2022-06-02T17:47:03.0232169Z latest: Pulling from tonistiigi/binfmt
2022-06-02T17:47:03.2261229Z 2b4d0e08bd75: Pulling fs layer
2022-06-02T17:47:03.2261872Z c331be51c382: Pulling fs layer
2022-06-02T17:47:03.5162271Z c331be51c382: Verifying Checksum
2022-06-02T17:47:03.5164868Z c331be51c382: Download complete
2022-06-02T17:47:03.6185888Z 2b4d0e08bd75: Verifying Checksum
2022-06-02T17:47:03.6186178Z 2b4d0e08bd75: Download complete
2022-06-02T17:47:03.8720939Z 2b4d0e08bd75: Pull complete
2022-06-02T17:47:04.0952755Z c331be51c382: Pull complete
2022-06-02T17:47:04.1005550Z Digest: sha256:5bf63a53ad6222538112b5ced0f1afb8509132773ea6dd3991a197464962854e
2022-06-02T17:47:04.1073383Z Status: Downloaded newer image for tonistiigi/binfmt:latest
2022-06-02T17:47:04.1123792Z docker.io/tonistiigi/binfmt:latest
2022-06-02T17:47:04.1124607Z ##[endgroup]
2022-06-02T17:47:04.1124970Z ##[group]Image info
2022-06-02T17:47:04.1125225Z [command]/usr/bin/docker image inspect tonistiigi/binfmt:latest
2022-06-02T17:47:04.1369156Z [
2022-06-02T17:47:04.1369664Z     {
2022-06-02T17:47:04.1370586Z         "Id": "sha256:71d103174212f41a387bade0baa1ebace8851f82d92a5b3485a2869c4ce1b483",
2022-06-02T17:47:04.1371032Z         "RepoTags": [
2022-06-02T17:47:04.1371698Z             "tonistiigi/binfmt:latest"
2022-06-02T17:47:04.1371939Z         ],
2022-06-02T17:47:04.1372129Z         "RepoDigests": [
2022-06-02T17:47:04.1372420Z             "tonistiigi/[email protected]:5bf63a53ad6222538112b5ced0f1afb8509132773ea6dd3991a197464962854e"
2022-06-02T17:47:04.1372691Z         ],
2022-06-02T17:47:04.1372873Z         "Parent": "",
2022-06-02T17:47:04.1373090Z         "Comment": "buildkit.dockerfile.v0",
2022-06-02T17:47:04.1373687Z         "Created": "2022-03-07T09:51:52.639644915Z",
2022-06-02T17:47:04.1373902Z         "Container": "",
2022-06-02T17:47:04.1374116Z         "ContainerConfig": {
2022-06-02T17:47:04.1374323Z             "Hostname": "",
2022-06-02T17:47:04.1374523Z             "Domainname": "",
2022-06-02T17:47:04.1374703Z             "User": "",
2022-06-02T17:47:04.1374901Z             "AttachStdin": false,
2022-06-02T17:47:04.1375112Z             "AttachStdout": false,
2022-06-02T17:47:04.1375310Z             "AttachStderr": false,
2022-06-02T17:47:04.1375510Z             "Tty": false,
2022-06-02T17:47:04.1375711Z             "OpenStdin": false,
2022-06-02T17:47:04.1375911Z             "StdinOnce": false,
2022-06-02T17:47:04.1376091Z             "Env": null,
2022-06-02T17:47:04.1376273Z             "Cmd": null,
2022-06-02T17:47:04.1376455Z             "Image": "",
2022-06-02T17:47:04.1376630Z             "Volumes": null,
2022-06-02T17:47:04.1376828Z             "WorkingDir": "",
2022-06-02T17:47:04.1377029Z             "Entrypoint": null,
2022-06-02T17:47:04.1377213Z             "OnBuild": null,
2022-06-02T17:47:04.1377405Z             "Labels": null
2022-06-02T17:47:04.1377851Z         },
2022-06-02T17:47:04.1378033Z         "DockerVersion": "",
2022-06-02T17:47:04.1378233Z         "Author": "",
2022-06-02T17:47:04.1378416Z         "Config": {
2022-06-02T17:47:04.1378590Z             "Hostname": "",
2022-06-02T17:47:04.1378789Z             "Domainname": "",
2022-06-02T17:47:04.1379019Z             "User": "",
2022-06-02T17:47:04.1379203Z             "AttachStdin": false,
2022-06-02T17:47:04.1379414Z             "AttachStdout": false,
2022-06-02T17:47:04.1379624Z             "AttachStderr": false,
2022-06-02T17:47:04.1379808Z             "Tty": false,
2022-06-02T17:47:04.1380001Z             "OpenStdin": false,
2022-06-02T17:47:04.1380203Z             "StdinOnce": false,
2022-06-02T17:47:04.1380388Z             "Env": [
2022-06-02T17:47:04.1380627Z                 "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
2022-06-02T17:47:04.1380892Z                 "QEMU_PRESERVE_ARGV0=1"
2022-06-02T17:47:04.1381084Z             ],
2022-06-02T17:47:04.1381256Z             "Cmd": null,
2022-06-02T17:47:04.1381439Z             "Image": "",
2022-06-02T17:47:04.1381623Z             "Volumes": {
2022-06-02T17:47:04.1381794Z                 "/tmp": {}
2022-06-02T17:47:04.1381969Z             },
2022-06-02T17:47:04.1382152Z             "WorkingDir": "/",
2022-06-02T17:47:04.1382338Z             "Entrypoint": [
2022-06-02T17:47:04.1382536Z                 "/usr/bin/binfmt"
2022-06-02T17:47:04.1382718Z             ],
2022-06-02T17:47:04.1382886Z             "OnBuild": null,
2022-06-02T17:47:04.1383095Z             "Labels": {
2022-06-02T17:47:04.1383488Z                 "org.opencontainers.image.created": "2022-03-07T09:50:56.500Z",
2022-06-02T17:47:04.1384028Z                 "org.opencontainers.image.description": "Cross-platform emulator collection distributed with Docker images",
2022-06-02T17:47:04.1384406Z                 "org.opencontainers.image.licenses": "MIT",
2022-06-02T17:47:04.1384762Z                 "org.opencontainers.image.revision": "1aa2eba35192f9e72dd164480ce70cd825469c4b",
2022-06-02T17:47:04.1385271Z                 "org.opencontainers.image.source": "https://github.com/tonistiigi/binfmt",
2022-06-02T17:47:04.1385615Z                 "org.opencontainers.image.title": "Binfmt",
2022-06-02T17:47:04.1385936Z                 "org.opencontainers.image.url": "https://github.com/tonistiigi/binfmt",
2022-06-02T17:47:04.1386601Z                 "org.opencontainers.image.version": "qemu-v6.2.0-26"
2022-06-02T17:47:04.1386859Z             }
2022-06-02T17:47:04.1387016Z         },
2022-06-02T17:47:04.1387203Z         "Architecture": "amd64",
2022-06-02T17:47:04.1387401Z         "Os": "linux",
2022-06-02T17:47:04.1387577Z         "Size": 35823748,
2022-06-02T17:47:04.1387774Z         "VirtualSize": 35823748,
2022-06-02T17:47:04.1387977Z         "GraphDriver": {
2022-06-02T17:47:04.1388154Z             "Data": {
2022-06-02T17:47:04.1388453Z                 "LowerDir": "/var/lib/docker/overlay2/0683b14e52d1f7f1971691b88d7979df4f2286b0725b4f6e797701fc7c286ecf/diff",
2022-06-02T17:47:04.1388891Z                 "MergedDir": "/var/lib/docker/overlay2/cb109a11e9d1abf08ead5fa53579ba7152f5d2bf2ff607b43310df2f1c4729c8/merged",
2022-06-02T17:47:04.1389343Z                 "UpperDir": "/var/lib/docker/overlay2/cb109a11e9d1abf08ead5fa53579ba7152f5d2bf2ff607b43310df2f1c4729c8/diff",
2022-06-02T17:47:04.1389769Z                 "WorkDir": "/var/lib/docker/overlay2/cb109a11e9d1abf08ead5fa53579ba7152f5d2bf2ff607b43310df2f1c4729c8/work"
2022-06-02T17:47:04.1390060Z             },
2022-06-02T17:47:04.1390243Z             "Name": "overlay2"
2022-06-02T17:47:04.1390413Z         },
2022-06-02T17:47:04.1390583Z         "RootFS": {
2022-06-02T17:47:04.1390767Z             "Type": "layers",
2022-06-02T17:47:04.1390942Z             "Layers": [
2022-06-02T17:47:04.1391212Z                 "sha256:db4323174f8e8adb6586670e45b1546a926d41ee10c8dc67ce400a452befeb23",
2022-06-02T17:47:04.1391564Z                 "sha256:ef86bc95c21a61d0207dabc92628043c85451dfe8bf607196bb5b9924b3c3543"
2022-06-02T17:47:04.1391883Z             ]
2022-06-02T17:47:04.1392052Z         },
2022-06-02T17:47:04.1392226Z         "Metadata": {
2022-06-02T17:47:04.1392508Z             "LastTagTime": "0001-01-01T00:00:00Z"
2022-06-02T17:47:04.1392710Z         }
2022-06-02T17:47:04.1392872Z     }
2022-06-02T17:47:04.1393029Z ]
2022-06-02T17:47:04.1414173Z ##[endgroup]
2022-06-02T17:47:04.1414814Z ##[group]Installing QEMU static binaries
2022-06-02T17:47:04.1432512Z [command]/usr/bin/docker run --rm --privileged tonistiigi/binfmt:latest --install all
2022-06-02T17:47:04.9573278Z installing: arm64 OK
2022-06-02T17:47:04.9573606Z installing: arm OK
2022-06-02T17:47:04.9573944Z installing: riscv64 OK
2022-06-02T17:47:04.9574243Z installing: mips64 OK
2022-06-02T17:47:04.9574501Z installing: s390x OK
2022-06-02T17:47:04.9574721Z installing: ppc64le OK
2022-06-02T17:47:04.9574984Z installing: mips64le OK
2022-06-02T17:47:04.9801824Z {
2022-06-02T17:47:04.9805370Z   "supported": [
2022-06-02T17:47:04.9805618Z     "linux/amd64",
2022-06-02T17:47:04.9805896Z     "linux/arm64",
2022-06-02T17:47:04.9806266Z     "linux/riscv64",
2022-06-02T17:47:04.9806474Z     "linux/ppc64le",
2022-06-02T17:47:04.9806734Z     "linux/s390x",
2022-06-02T17:47:04.9806974Z     "linux/386",
2022-06-02T17:47:04.9807176Z     "linux/mips64le",
2022-06-02T17:47:04.9807450Z     "linux/mips64",
2022-06-02T17:47:04.9807705Z     "linux/arm/v7",
2022-06-02T17:47:04.9807903Z     "linux/arm/v6"
2022-06-02T17:47:04.9808133Z   ],
2022-06-02T17:47:04.9808360Z   "emulators": [
2022-06-02T17:47:04.9808577Z     "cli",
2022-06-02T17:47:04.9809093Z     "llvm-10-runtime.binfmt",
2022-06-02T17:47:04.9809423Z     "llvm-11-runtime.binfmt",
2022-06-02T17:47:04.9809745Z     "llvm-12-runtime.binfmt",
2022-06-02T17:47:04.9809965Z     "python2.7",
2022-06-02T17:47:04.9810240Z     "python3.8",
2022-06-02T17:47:04.9810512Z     "qemu-aarch64",
2022-06-02T17:47:04.9810742Z     "qemu-arm",
2022-06-02T17:47:04.9811010Z     "qemu-mips64",
2022-06-02T17:47:04.9811331Z     "qemu-mips64el",
2022-06-02T17:47:04.9811861Z     "qemu-ppc64le",
2022-06-02T17:47:04.9812142Z     "qemu-riscv64",
2022-06-02T17:47:04.9812414Z     "qemu-s390x"
2022-06-02T17:47:04.9812599Z   ]
2022-06-02T17:47:04.9812832Z }
2022-06-02T17:47:05.1381009Z ##[endgroup]
2022-06-02T17:47:05.1381628Z ##[group]Extracting available platforms
2022-06-02T17:47:05.6456477Z linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
2022-06-02T17:47:05.6465704Z ##[endgroup]
2022-06-02T17:47:05.6658435Z ##[group]Run docker/[email protected]
2022-06-02T17:47:05.6658688Z with:
2022-06-02T17:47:05.6658940Z   driver: docker-container
2022-06-02T17:47:05.6659362Z   buildkitd-flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
2022-06-02T17:47:05.6659744Z   install: false
2022-06-02T17:47:05.6659979Z   use: true
2022-06-02T17:47:05.6660217Z ##[endgroup]
2022-06-02T17:47:05.8010520Z ##[group]Docker info
2022-06-02T17:47:05.8022435Z [command]/usr/bin/docker version
2022-06-02T17:47:05.8388127Z Client:
2022-06-02T17:47:05.8389710Z  Version:           20.10.16+azure-3
2022-06-02T17:47:05.8390078Z  API version:       1.41
2022-06-02T17:47:05.8390436Z  Go version:        go1.17.10
2022-06-02T17:47:05.8390788Z  Git commit:        aa7e414fdcb23a66e8fabbef0a560ef1769eace5
2022-06-02T17:47:05.8391258Z  Built:             Wed May 11 16:22:17 UTC 2022
2022-06-02T17:47:05.8391599Z  OS/Arch:           linux/amd64
2022-06-02T17:47:05.8392004Z  Context:           default
2022-06-02T17:47:05.8392325Z  Experimental:      true
2022-06-02T17:47:05.8392511Z 
2022-06-02T17:47:05.8392729Z Server:
2022-06-02T17:47:05.8393012Z  Engine:
2022-06-02T17:47:05.8393334Z   Version:          20.10.16+azure-2
2022-06-02T17:47:05.8393690Z   API version:      1.41 (minimum version 1.12)
2022-06-02T17:47:05.8394035Z   Go version:       go1.17.10
2022-06-02T17:47:05.8394390Z   Git commit:       f756502055d2e36a84f2068e6620bea5ecf09058
2022-06-02T17:47:05.8394772Z   Built:            Thu May 12 07:33:06 2022
2022-06-02T17:47:05.8395107Z   OS/Arch:          linux/amd64
2022-06-02T17:47:05.8395438Z   Experimental:     false
2022-06-02T17:47:05.8395720Z  containerd:
2022-06-02T17:47:05.8396108Z   Version:          1.5.11+azure-1
2022-06-02T17:47:05.8396491Z   GitCommit:        3df54a852345ae127d1fa3092b95168e4a88e2f8
2022-06-02T17:47:05.8396796Z  runc:
2022-06-02T17:47:05.8397102Z   Version:          1.0.3
2022-06-02T17:47:05.8397515Z   GitCommit:        f46b6ba2c9314cfc8caae24a32ec5fe9ef1059fe
2022-06-02T17:47:05.8397936Z  docker-init:
2022-06-02T17:47:05.8400110Z   Version:          0.19.0
2022-06-02T17:47:05.8400469Z   GitCommit:        
2022-06-02T17:47:05.8431964Z [command]/usr/bin/docker info
2022-06-02T17:47:05.9294515Z Client:
2022-06-02T17:47:05.9295444Z  Context:    default
2022-06-02T17:47:05.9295954Z  Debug Mode: false
2022-06-02T17:47:05.9296296Z  Plugins:
2022-06-02T17:47:05.9297061Z   buildx: Docker Buildx (Docker Inc., 0.8.2+azure-1)
2022-06-02T17:47:05.9297595Z   compose: Docker Compose (Docker Inc., 2.4.1+azure-1)
2022-06-02T17:47:05.9297855Z 
2022-06-02T17:47:05.9297982Z Server:
2022-06-02T17:47:05.9298304Z  Containers: 0
2022-06-02T17:47:05.9298645Z   Running: 0
2022-06-02T17:47:05.9298953Z   Paused: 0
2022-06-02T17:47:05.9299214Z   Stopped: 0
2022-06-02T17:47:05.9299511Z  Images: 20
2022-06-02T17:47:05.9299876Z  Server Version: 20.10.16+azure-2
2022-06-02T17:47:05.9300206Z  Storage Driver: overlay2
2022-06-02T17:47:05.9300551Z   Backing Filesystem: extfs
2022-06-02T17:47:05.9300897Z   Supports d_type: true
2022-06-02T17:47:05.9301260Z   Native Overlay Diff: false
2022-06-02T17:47:05.9301547Z   userxattr: false
2022-06-02T17:47:05.9301948Z  Logging Driver: json-file
2022-06-02T17:47:05.9302330Z  Cgroup Driver: cgroupfs
2022-06-02T17:47:05.9302629Z  Cgroup Version: 1
2022-06-02T17:47:05.9302936Z  Plugins:
2022-06-02T17:47:05.9303263Z   Volume: local
2022-06-02T17:47:05.9303615Z   Network: bridge host ipvlan macvlan null overlay
2022-06-02T17:47:05.9304513Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2022-06-02T17:47:05.9304914Z  Swarm: inactive
2022-06-02T17:47:05.9305349Z  Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
2022-06-02T17:47:05.9305720Z  Default Runtime: runc
2022-06-02T17:47:05.9306106Z  Init Binary: docker-init
2022-06-02T17:47:05.9306714Z  containerd version: 3df54a852345ae127d1fa3092b95168e4a88e2f8
2022-06-02T17:47:05.9307600Z  runc version: f46b6ba2c9314cfc8caae24a32ec5fe9ef1059fe
2022-06-02T17:47:05.9308290Z  init version: 
2022-06-02T17:47:05.9308517Z  Security Options:
2022-06-02T17:47:05.9308773Z   apparmor
2022-06-02T17:47:05.9309027Z   seccomp
2022-06-02T17:47:05.9309222Z    Profile: default
2022-06-02T17:47:05.9309707Z  Kernel Version: 5.13.0-1025-azure
2022-06-02T17:47:05.9310000Z  Operating System: Ubuntu 20.04.4 LTS
2022-06-02T17:47:05.9310227Z  OSType: linux
2022-06-02T17:47:05.9310495Z  Architecture: x86_64
2022-06-02T17:47:05.9310771Z  CPUs: 2
2022-06-02T17:47:05.9310980Z  Total Memory: 6.784GiB
2022-06-02T17:47:05.9311278Z  Name: fv-az83-468
2022-06-02T17:47:05.9311599Z  ID: KHQM:5PAR:3WQG:34UF:ROLK:WTJW:SARG:XRYR:UA5O:7YXZ:H5UH:L2GN
2022-06-02T17:47:05.9311919Z  Docker Root Dir: /var/lib/docker
2022-06-02T17:47:05.9312167Z  Debug Mode: false
2022-06-02T17:47:05.9312427Z  Username: githubactions
2022-06-02T17:47:05.9312755Z  Registry: https://index.docker.io/v1/
2022-06-02T17:47:05.9312987Z  Labels:
2022-06-02T17:47:05.9313227Z  Experimental: false
2022-06-02T17:47:05.9313517Z  Insecure Registries:
2022-06-02T17:47:05.9313723Z   127.0.0.0/8
2022-06-02T17:47:05.9313985Z  Live Restore Enabled: false
2022-06-02T17:47:05.9314147Z 
2022-06-02T17:47:05.9334414Z ##[endgroup]
2022-06-02T17:47:06.2947273Z ##[group]Buildx version
2022-06-02T17:47:06.2956936Z [command]/usr/bin/docker buildx version
2022-06-02T17:47:06.3591518Z github.com/docker/buildx 0.8.2+azure-1 6224def4dd2c3d347eee19db595348c50d7cb491
2022-06-02T17:47:06.3615075Z ##[endgroup]
2022-06-02T17:47:06.3630450Z ##[group]Creating a new builder instance
2022-06-02T17:47:06.3663909Z [command]/usr/bin/docker buildx create --name builder-5f1da406-81c0-4744-b7e8-c48de0eceb92 --driver docker-container --buildkitd-flags --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host --use
2022-06-02T17:47:06.4943979Z builder-5f1da406-81c0-4744-b7e8-c48de0eceb92
2022-06-02T17:47:06.4983447Z ##[endgroup]
2022-06-02T17:47:06.4983952Z ##[group]Booting builder
2022-06-02T17:47:06.4995509Z [command]/usr/bin/docker buildx inspect --bootstrap --builder builder-5f1da406-81c0-4744-b7e8-c48de0eceb92
2022-06-02T17:47:06.5800528Z #1 [internal] booting buildkit
2022-06-02T17:47:06.7310325Z #1 pulling image moby/buildkit:buildx-stable-1
2022-06-02T17:47:07.1638961Z #1 pulling image moby/buildkit:buildx-stable-1 0.6s done
2022-06-02T17:47:07.3138409Z #1 creating container buildx_buildkit_builder-5f1da406-81c0-4744-b7e8-c48de0eceb920
2022-06-02T17:47:09.7006432Z #1 creating container buildx_buildkit_builder-5f1da406-81c0-4744-b7e8-c48de0eceb920 2.5s done
2022-06-02T17:47:09.7038172Z #1 DONE 3.1s
2022-06-02T17:47:09.8557157Z Name:   builder-5f1da406-81c0-4744-b7e8-c48de0eceb92
2022-06-02T17:47:09.8560843Z Driver: docker-container
2022-06-02T17:47:09.8561009Z 
2022-06-02T17:47:09.8561079Z Nodes:
2022-06-02T17:47:09.8561385Z Name:      builder-5f1da406-81c0-4744-b7e8-c48de0eceb920
2022-06-02T17:47:09.8561665Z Endpoint:  unix:///var/run/docker.sock
2022-06-02T17:47:09.8561881Z Status:    running
2022-06-02T17:47:09.8562304Z Flags:     --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
2022-06-02T17:47:09.8562797Z Platforms: linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/amd64/v4, linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x, linux/386, linux/mips64le, linux/mips64, linux/arm/v7, linux/arm/v6
2022-06-02T17:47:09.8665936Z ##[endgroup]
2022-06-02T17:47:09.8666454Z ##[group]Inspect builder
2022-06-02T17:47:10.0147679Z {
2022-06-02T17:47:10.0148742Z   "name": "builder-5f1da406-81c0-4744-b7e8-c48de0eceb92",
2022-06-02T17:47:10.0221858Z   "driver": "docker-container",
2022-06-02T17:47:10.0222271Z   "node_name": "builder-5f1da406-81c0-4744-b7e8-c48de0eceb920",
2022-06-02T17:47:10.0222582Z   "node_endpoint": "unix:///var/run/docker.sock",
2022-06-02T17:47:10.0222806Z   "node_status": "running",
2022-06-02T17:47:10.0223258Z   "node_flags": "--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host",
2022-06-02T17:47:10.0223951Z   "node_platforms": "linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/amd64/v4,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6"
2022-06-02T17:47:10.0224291Z }
2022-06-02T17:47:10.0226201Z ##[endgroup]
2022-06-02T17:47:10.0227099Z ##[group]BuildKit version
2022-06-02T17:47:10.6478105Z moby/buildkit:buildx-stable-1 => buildkitd github.com/moby/buildkit v0.10.3 c8d25d9a103b70dc300a4fd55e7e576472284e31
2022-06-02T17:47:10.6478843Z ##[endgroup]
2022-06-02T17:47:10.6607589Z ##[group]Run actions/[email protected]
2022-06-02T17:47:10.6607799Z with:
2022-06-02T17:47:10.6607962Z   fetch-depth: 0
2022-06-02T17:47:10.6608175Z   repository: <REPO_NAME>
2022-06-02T17:47:10.6608512Z   token: ***
2022-06-02T17:47:10.6608682Z   ssh-strict: true
2022-06-02T17:47:10.6608886Z   persist-credentials: true
2022-06-02T17:47:10.6609087Z   clean: true
2022-06-02T17:47:10.6609264Z   lfs: false
2022-06-02T17:47:10.6609429Z   submodules: false
2022-06-02T17:47:10.6609628Z   set-safe-directory: true
2022-06-02T17:47:10.6609935Z ##[endgroup]
2022-06-02T17:47:12.1636676Z Syncing repository: <REPO_NAME>
2022-06-02T17:47:12.1669139Z ##[group]Getting Git version info
2022-06-02T17:47:12.1669602Z Working directory is '/home/runner/work/<FOOBAR>/<FOOBAR>'
2022-06-02T17:47:12.1699374Z [command]/usr/bin/git version
2022-06-02T17:47:12.3056767Z git version 2.36.1
2022-06-02T17:47:12.3057733Z ##[endgroup]
2022-06-02T17:47:12.3093914Z Temporarily overriding HOME='/home/runner/work/_temp/caa26738-97eb-4705-bf0b-e6923b01aa06' before making global git config changes
2022-06-02T17:47:12.3094355Z Adding repository directory to the temporary git global config as a safe directory
2022-06-02T17:47:12.3094940Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/<FOOBAR>/<FOOBAR>
2022-06-02T17:47:12.3135055Z Deleting the contents of '/home/runner/work/<FOOBAR>/<FOOBAR>'
2022-06-02T17:47:12.3148962Z ##[group]Initializing the repository
2022-06-02T17:47:12.3149517Z [command]/usr/bin/git init /home/runner/work/<FOOBAR>/<FOOBAR>
2022-06-02T17:47:12.3537089Z hint: Using 'master' as the name for the initial branch. This default branch name
2022-06-02T17:47:12.3537458Z hint: is subject to change. To configure the initial branch name to use in all
2022-06-02T17:47:12.3537808Z hint: of your new repositories, which will suppress this warning, call:
2022-06-02T17:47:12.3538057Z hint: 
2022-06-02T17:47:12.3538380Z hint: 	git config --global init.defaultBranch <name>
2022-06-02T17:47:12.3538614Z hint: 
2022-06-02T17:47:12.3538915Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2022-06-02T17:47:12.3539326Z hint: 'development'. The just-created branch can be renamed via this command:
2022-06-02T17:47:12.3539581Z hint: 
2022-06-02T17:47:12.3539796Z hint: 	git branch -m <name>
2022-06-02T17:47:12.3544610Z Initialized empty Git repository in /home/runner/work/<FOOBAR>/<FOOBAR>/.git/
2022-06-02T17:47:12.3593600Z [command]/usr/bin/git remote add origin <REMOTE>
2022-06-02T17:47:12.3733252Z ##[endgroup]
2022-06-02T17:47:12.3733665Z ##[group]Disabling automatic garbage collection
2022-06-02T17:47:12.3734087Z [command]/usr/bin/git config --local gc.auto 0
2022-06-02T17:47:12.3756851Z ##[endgroup]
2022-06-02T17:47:12.3757605Z ##[group]Setting up auth
2022-06-02T17:47:12.3763897Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-06-02T17:47:12.3795344Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-06-02T17:47:12.5798569Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-06-02T17:47:12.5850142Z [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-06-02T17:47:12.6058808Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2022-06-02T17:47:12.6107236Z ##[endgroup]
2022-06-02T17:47:12.6107980Z ##[group]Fetching the repository
2022-06-02T17:47:12.6154899Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
2022-06-02T17:47:13.2310715Z remote: Enumerating objects: 169, done.        
2022-06-02T17:47:13.2311365Z remote: Counting objects:   0% (1/169)        
2022-06-02T17:47:13.2312391Z remote: Counting objects:   1% (2/169)        
2022-06-02T17:47:13.2312828Z remote: Counting objects:   2% (4/169)        
2022-06-02T17:47:13.2313133Z remote: Counting objects:   3% (6/169)        
2022-06-02T17:47:13.2313437Z remote: Counting objects:   4% (7/169)        
2022-06-02T17:47:13.2313727Z remote: Counting objects:   5% (9/169)        
2022-06-02T17:47:13.2314034Z remote: Counting objects:   6% (11/169)        
2022-06-02T17:47:13.2314347Z remote: Counting objects:   7% (12/169)        
2022-06-02T17:47:13.2314635Z remote: Counting objects:   8% (14/169)        
2022-06-02T17:47:13.2314935Z remote: Counting objects:   9% (16/169)        
2022-06-02T17:47:13.2315236Z remote: Counting objects:  10% (17/169)        
2022-06-02T17:47:13.2315523Z remote: Counting objects:  11% (19/169)        
2022-06-02T17:47:13.2315836Z remote: Counting objects:  12% (21/169)        
2022-06-02T17:47:13.2316134Z remote: Counting objects:  13% (22/169)        
2022-06-02T17:47:13.2316430Z remote: Counting objects:  14% (24/169)        
2022-06-02T17:47:13.2316711Z remote: Counting objects:  15% (26/169)        
2022-06-02T17:47:13.2317002Z remote: Counting objects:  16% (28/169)        
2022-06-02T17:47:13.2317299Z remote: Counting objects:  17% (29/169)        
2022-06-02T17:47:13.2317574Z remote: Counting objects:  18% (31/169)        
2022-06-02T17:47:13.2317865Z remote: Counting objects:  19% (33/169)        
2022-06-02T17:47:13.2318158Z remote: Counting objects:  20% (34/169)        
2022-06-02T17:47:13.2318437Z remote: Counting objects:  21% (36/169)        
2022-06-02T17:47:13.2318726Z remote: Counting objects:  22% (38/169)        
2022-06-02T17:47:13.2319018Z remote: Counting objects:  23% (39/169)        
2022-06-02T17:47:13.2319297Z remote: Counting objects:  24% (41/169)        
2022-06-02T17:47:13.2319588Z remote: Counting objects:  25% (43/169)        
2022-06-02T17:47:13.2319884Z remote: Counting objects:  26% (44/169)        
2022-06-02T17:47:13.2320184Z remote: Counting objects:  27% (46/169)        
2022-06-02T17:47:13.2320466Z remote: Counting objects:  28% (48/169)        
2022-06-02T17:47:13.2320759Z remote: Counting objects:  29% (50/169)        
2022-06-02T17:47:13.2321052Z remote: Counting objects:  30% (51/169)        
2022-06-02T17:47:13.2321334Z remote: Counting objects:  31% (53/169)        
2022-06-02T17:47:13.2321629Z remote: Counting objects:  32% (55/169)        
2022-06-02T17:47:13.2321922Z remote: Counting objects:  33% (56/169)        
2022-06-02T17:47:13.2322201Z remote: Counting objects:  34% (58/169)        
2022-06-02T17:47:13.2322491Z remote: Counting objects:  35% (60/169)        
2022-06-02T17:47:13.2322785Z remote: Counting objects:  36% (61/169)        
2022-06-02T17:47:13.2323068Z remote: Counting objects:  37% (63/169)        
2022-06-02T17:47:13.2323363Z remote: Counting objects:  38% (65/169)        
2022-06-02T17:47:13.2323660Z remote: Counting objects:  39% (66/169)        
2022-06-02T17:47:13.2324189Z remote: Counting objects:  40% (68/169)        
2022-06-02T17:47:13.2324470Z remote: Counting objects:  41% (70/169)        
2022-06-02T17:47:13.2324765Z remote: Counting objects:  42% (71/169)        
2022-06-02T17:47:13.2325058Z remote: Counting objects:  43% (73/169)        
2022-06-02T17:47:13.2325337Z remote: Counting objects:  44% (75/169)        
2022-06-02T17:47:13.2325631Z remote: Counting objects:  45% (77/169)        
2022-06-02T17:47:13.2325924Z remote: Counting objects:  46% (78/169)        
2022-06-02T17:47:13.2326202Z remote: Counting objects:  47% (80/169)        
2022-06-02T17:47:13.2326489Z remote: Counting objects:  48% (82/169)        
2022-06-02T17:47:13.2326778Z remote: Counting objects:  49% (83/169)        
2022-06-02T17:47:13.2327073Z remote: Counting objects:  50% (85/169)        
2022-06-02T17:47:13.2327354Z remote: Counting objects:  51% (87/169)        
2022-06-02T17:47:13.2327730Z remote: Counting objects:  52% (88/169)        
2022-06-02T17:47:13.2328030Z remote: Counting objects:  53% (90/169)        
2022-06-02T17:47:13.2328305Z remote: Counting objects:  54% (92/169)        
2022-06-02T17:47:13.2328594Z remote: Counting objects:  55% (93/169)        
2022-06-02T17:47:13.2328889Z remote: Counting objects:  56% (95/169)        
2022-06-02T17:47:13.2329167Z remote: Counting objects:  57% (97/169)        
2022-06-02T17:47:13.2329457Z remote: Counting objects:  58% (99/169)        
2022-06-02T17:47:13.2329761Z remote: Counting objects:  59% (100/169)        
2022-06-02T17:47:13.2330056Z remote: Counting objects:  60% (102/169)        
2022-06-02T17:47:13.2330357Z remote: Counting objects:  61% (104/169)        
2022-06-02T17:47:13.2330662Z remote: Counting objects:  62% (105/169)        
2022-06-02T17:47:13.2330967Z remote: Counting objects:  63% (107/169)        
2022-06-02T17:47:13.2331257Z remote: Counting objects:  64% (109/169)        
2022-06-02T17:47:13.2331554Z remote: Counting objects:  65% (110/169)        
2022-06-02T17:47:13.2331861Z remote: Counting objects:  66% (112/169)        
2022-06-02T17:47:13.2332150Z remote: Counting objects:  67% (114/169)        
2022-06-02T17:47:13.2332445Z remote: Counting objects:  68% (115/169)        
2022-06-02T17:47:13.2332746Z remote: Counting objects:  69% (117/169)        
2022-06-02T17:47:13.2333029Z remote: Counting objects:  70% (119/169)        
2022-06-02T17:47:13.2333321Z remote: Counting objects:  71% (120/169)        
2022-06-02T17:47:13.2333615Z remote: Counting objects:  72% (122/169)        
2022-06-02T17:47:13.2333895Z remote: Counting objects:  73% (124/169)        
2022-06-02T17:47:13.2334191Z remote: Counting objects:  74% (126/169)        
2022-06-02T17:47:13.2334488Z remote: Counting objects:  75% (127/169)        
2022-06-02T17:47:13.2334881Z remote: Counting objects:  76% (129/169)        
2022-06-02T17:47:13.2335098Z remote: Counting objects:  77% (131/169)        
2022-06-02T17:47:13.2335329Z remote: Counting objects:  78% (132/169)        
2022-06-02T17:47:13.2335562Z remote: Counting objects:  79% (134/169)        
2022-06-02T17:47:13.2335783Z remote: Counting objects:  80% (136/169)        
2022-06-02T17:47:13.2336015Z remote: Counting objects:  81% (137/169)        
2022-06-02T17:47:13.2336245Z remote: Counting objects:  82% (139/169)        
2022-06-02T17:47:13.2336461Z remote: Counting objects:  83% (141/169)        
2022-06-02T17:47:13.2336689Z remote: Counting objects:  84% (142/169)        
2022-06-02T17:47:13.2336920Z remote: Counting objects:  85% (144/169)        
2022-06-02T17:47:13.2337138Z remote: Counting objects:  86% (146/169)        
2022-06-02T17:47:13.2337371Z remote: Counting objects:  87% (148/169)        
2022-06-02T17:47:13.2337601Z remote: Counting objects:  88% (149/169)        
2022-06-02T17:47:13.2337830Z remote: Counting objects:  89% (151/169)        
2022-06-02T17:47:13.2338049Z remote: Counting objects:  90% (153/169)        
2022-06-02T17:47:13.2338280Z remote: Counting objects:  91% (154/169)        
2022-06-02T17:47:13.2338514Z remote: Counting objects:  92% (156/169)        
2022-06-02T17:47:13.2338786Z remote: Counting objects:  93% (158/169)        
2022-06-02T17:47:13.2339020Z remote: Counting objects:  94% (159/169)        
2022-06-02T17:47:13.2339254Z remote: Counting objects:  95% (161/169)        
2022-06-02T17:47:13.2339475Z remote: Counting objects:  96% (163/169)        
2022-06-02T17:47:13.2339708Z remote: Counting objects:  97% (164/169)        
2022-06-02T17:47:13.2339940Z remote: Counting objects:  98% (166/169)        
2022-06-02T17:47:13.2340158Z remote: Counting objects:  99% (168/169)        
2022-06-02T17:47:13.2340387Z remote: Counting objects: 100% (169/169)        
2022-06-02T17:47:13.2340629Z remote: Counting objects: 100% (169/169), done.        
2022-06-02T17:47:13.2340913Z remote: Compressing objects:   1% (1/83)        
2022-06-02T17:47:13.2341144Z remote: Compressing objects:   2% (2/83)        
2022-06-02T17:47:13.2341381Z remote: Compressing objects:   3% (3/83)        
2022-06-02T17:47:13.2341667Z remote: Compressing objects:   4% (4/83)        
2022-06-02T17:47:13.2341915Z remote: Compressing objects:   6% (5/83)        
2022-06-02T17:47:13.2342142Z remote: Compressing objects:   7% (6/83)        
2022-06-02T17:47:13.2342385Z remote: Compressing objects:   8% (7/83)        
2022-06-02T17:47:13.2342623Z remote: Compressing objects:   9% (8/83)        
2022-06-02T17:47:13.2342851Z remote: Compressing objects:  10% (9/83)        
2022-06-02T17:47:13.2343095Z remote: Compressing objects:  12% (10/83)        
2022-06-02T17:47:13.2343346Z remote: Compressing objects:  13% (11/83)        
2022-06-02T17:47:13.2343581Z remote: Compressing objects:  14% (12/83)        
2022-06-02T17:47:13.2343828Z remote: Compressing objects:  15% (13/83)        
2022-06-02T17:47:13.2344078Z remote: Compressing objects:  16% (14/83)        
2022-06-02T17:47:13.2344307Z remote: Compressing objects:  18% (15/83)        
2022-06-02T17:47:13.2344553Z remote: Compressing objects:  19% (16/83)        
2022-06-02T17:47:13.2344797Z remote: Compressing objects:  20% (17/83)        
2022-06-02T17:47:13.2345042Z remote: Compressing objects:  21% (18/83)        
2022-06-02T17:47:13.2345268Z remote: Compressing objects:  22% (19/83)        
2022-06-02T17:47:13.2345508Z remote: Compressing objects:  24% (20/83)        
2022-06-02T17:47:13.2345790Z remote: Compressing objects:  25% (21/83)        
2022-06-02T17:47:13.2346017Z remote: Compressing objects:  26% (22/83)        
2022-06-02T17:47:13.2346259Z remote: Compressing objects:  27% (23/83)        
2022-06-02T17:47:13.2346701Z remote: Compressing objects:  28% (24/83)        
2022-06-02T17:47:13.2346926Z remote: Compressing objects:  30% (25/83)        
2022-06-02T17:47:13.2347166Z remote: Compressing objects:  31% (26/83)        
2022-06-02T17:47:13.2347516Z remote: Compressing objects:  32% (27/83)        
2022-06-02T17:47:13.2347756Z remote: Compressing objects:  33% (28/83)        
2022-06-02T17:47:13.2347998Z remote: Compressing objects:  34% (29/83)        
2022-06-02T17:47:13.2348226Z remote: Compressing objects:  36% (30/83)        
2022-06-02T17:47:13.2348474Z remote: Compressing objects:  37% (31/83)        
2022-06-02T17:47:13.2348717Z remote: Compressing objects:  38% (32/83)        
2022-06-02T17:47:13.2348955Z remote: Compressing objects:  39% (33/83)        
2022-06-02T17:47:13.2349181Z remote: Compressing objects:  40% (34/83)        
2022-06-02T17:47:13.2592873Z remote: Compressing objects:  42% (35/83)        
2022-06-02T17:47:13.2593251Z remote: Compressing objects:  43% (36/83)        
2022-06-02T17:47:13.2593561Z remote: Compressing objects:  44% (37/83)        
2022-06-02T17:47:13.2593882Z remote: Compressing objects:  45% (38/83)        
2022-06-02T17:47:13.2594199Z remote: Compressing objects:  46% (39/83)        
2022-06-02T17:47:13.2594508Z remote: Compressing objects:  48% (40/83)        
2022-06-02T17:47:13.2594807Z remote: Compressing objects:  49% (41/83)        
2022-06-02T17:47:13.2595115Z remote: Compressing objects:  50% (42/83)        
2022-06-02T17:47:13.2595441Z remote: Compressing objects:  51% (43/83)        
2022-06-02T17:47:13.2595985Z remote: Compressing objects:  53% (44/83)        
2022-06-02T17:47:13.2596293Z remote: Compressing objects:  54% (45/83)        
2022-06-02T17:47:13.2596601Z remote: Compressing objects:  55% (46/83)        
2022-06-02T17:47:13.2596892Z remote: Compressing objects:  56% (47/83)        
2022-06-02T17:47:13.2597200Z remote: Compressing objects:  57% (48/83)        
2022-06-02T17:47:13.2597506Z remote: Compressing objects:  59% (49/83)        
2022-06-02T17:47:13.2597797Z remote: Compressing objects:  60% (50/83)        
2022-06-02T17:47:13.2598111Z remote: Compressing objects:  61% (51/83)        
2022-06-02T17:47:13.2598414Z remote: Compressing objects:  62% (52/83)        
2022-06-02T17:47:13.2598719Z remote: Compressing objects:  63% (53/83)        
2022-06-02T17:47:13.2599196Z remote: Compressing objects:  65% (54/83)        
2022-06-02T17:47:13.2599504Z remote: Compressing objects:  66% (55/83)        
2022-06-02T17:47:13.2599897Z remote: Compressing objects:  67% (56/83)        
2022-06-02T17:47:13.2600200Z remote: Compressing objects:  68% (57/83)        
2022-06-02T17:47:13.2600503Z remote: Compressing objects:  69% (58/83)        
2022-06-02T17:47:13.2600811Z remote: Compressing objects:  71% (59/83)        
2022-06-02T17:47:13.2601105Z remote: Compressing objects:  72% (60/83)        
2022-06-02T17:47:13.2601417Z remote: Compressing objects:  73% (61/83)        
2022-06-02T17:47:13.2601721Z remote: Compressing objects:  74% (62/83)        
2022-06-02T17:47:13.2602032Z remote: Compressing objects:  75% (63/83)        
2022-06-02T17:47:13.2602326Z remote: Compressing objects:  77% (64/83)        
2022-06-02T17:47:13.2602637Z remote: Compressing objects:  78% (65/83)        
2022-06-02T17:47:13.2602947Z remote: Compressing objects:  79% (66/83)        
2022-06-02T17:47:13.2603237Z remote: Compressing objects:  80% (67/83)        
2022-06-02T17:47:13.2603539Z remote: Compressing objects:  81% (68/83)        
2022-06-02T17:47:13.2603851Z remote: Compressing objects:  83% (69/83)        
2022-06-02T17:47:13.2604146Z remote: Compressing objects:  84% (70/83)        
2022-06-02T17:47:13.2604448Z remote: Compressing objects:  85% (71/83)        
2022-06-02T17:47:13.2604757Z remote: Compressing objects:  86% (72/83)        
2022-06-02T17:47:13.2605046Z remote: Compressing objects:  87% (73/83)        
2022-06-02T17:47:13.2605349Z remote: Compressing objects:  89% (74/83)        
2022-06-02T17:47:13.2605656Z remote: Compressing objects:  90% (75/83)        
2022-06-02T17:47:13.2605961Z remote: Compressing objects:  91% (76/83)        
2022-06-02T17:47:13.2606251Z remote: Compressing objects:  92% (77/83)        
2022-06-02T17:47:13.2606555Z remote: Compressing objects:  93% (78/83)        
2022-06-02T17:47:13.2606860Z remote: Compressing objects:  95% (79/83)        
2022-06-02T17:47:13.2607148Z remote: Compressing objects:  96% (80/83)        
2022-06-02T17:47:13.2607449Z remote: Compressing objects:  97% (81/83)        
2022-06-02T17:47:13.2607757Z remote: Compressing objects:  98% (82/83)        
2022-06-02T17:47:13.2608049Z remote: Compressing objects: 100% (83/83)        
2022-06-02T17:47:13.2608376Z remote: Compressing objects: 100% (83/83), done.        
2022-06-02T17:47:13.2892925Z Receiving objects:   0% (1/169)
2022-06-02T17:47:13.2893247Z Receiving objects:   1% (2/169)
2022-06-02T17:47:13.2893507Z Receiving objects:   2% (4/169)
2022-06-02T17:47:13.2893776Z Receiving objects:   3% (6/169)
2022-06-02T17:47:13.2894047Z Receiving objects:   4% (7/169)
2022-06-02T17:47:13.2894299Z Receiving objects:   5% (9/169)
2022-06-02T17:47:13.2897532Z Receiving objects:   6% (11/169)
2022-06-02T17:47:13.2898028Z Receiving objects:   7% (12/169)
2022-06-02T17:47:13.2900815Z Receiving objects:   8% (14/169)
2022-06-02T17:47:13.2901419Z Receiving objects:   9% (16/169)
2022-06-02T17:47:13.2904209Z Receiving objects:  10% (17/169)
2022-06-02T17:47:13.2906279Z Receiving objects:  11% (19/169)
2022-06-02T17:47:13.2906961Z Receiving objects:  12% (21/169)
2022-06-02T17:47:13.2907306Z Receiving objects:  13% (22/169)
2022-06-02T17:47:13.2907521Z Receiving objects:  14% (24/169)
2022-06-02T17:47:13.2907736Z Receiving objects:  15% (26/169)
2022-06-02T17:47:13.2928637Z Receiving objects:  16% (28/169)
2022-06-02T17:47:13.2932423Z Receiving objects:  17% (29/169)
2022-06-02T17:47:13.2932653Z Receiving objects:  18% (31/169)
2022-06-02T17:47:13.2932890Z Receiving objects:  19% (33/169)
2022-06-02T17:47:13.2933106Z Receiving objects:  20% (34/169)
2022-06-02T17:47:13.2933322Z Receiving objects:  21% (36/169)
2022-06-02T17:47:13.2933522Z Receiving objects:  22% (38/169)
2022-06-02T17:47:13.2933736Z Receiving objects:  23% (39/169)
2022-06-02T17:47:13.2933947Z Receiving objects:  24% (41/169)
2022-06-02T17:47:13.2934143Z Receiving objects:  25% (43/169)
2022-06-02T17:47:13.2934351Z Receiving objects:  26% (44/169)
2022-06-02T17:47:13.2934563Z Receiving objects:  27% (46/169)
2022-06-02T17:47:13.2934760Z Receiving objects:  28% (48/169)
2022-06-02T17:47:13.2954018Z Receiving objects:  29% (50/169)
2022-06-02T17:47:13.2954303Z Receiving objects:  30% (51/169)
2022-06-02T17:47:13.2954502Z Receiving objects:  31% (53/169)
2022-06-02T17:47:13.2954708Z Receiving objects:  32% (55/169)
2022-06-02T17:47:13.2954917Z Receiving objects:  33% (56/169)
2022-06-02T17:47:13.2955113Z Receiving objects:  34% (58/169)
2022-06-02T17:47:13.2955325Z Receiving objects:  35% (60/169)
2022-06-02T17:47:13.2955536Z Receiving objects:  36% (61/169)
2022-06-02T17:47:13.2955744Z Receiving objects:  37% (63/169)
2022-06-02T17:47:13.2955940Z Receiving objects:  38% (65/169)
2022-06-02T17:47:13.2956146Z Receiving objects:  39% (66/169)
2022-06-02T17:47:13.2956355Z Receiving objects:  40% (68/169)
2022-06-02T17:47:13.2956549Z Receiving objects:  41% (70/169)
2022-06-02T17:47:13.2956756Z Receiving objects:  42% (71/169)
2022-06-02T17:47:13.2956963Z Receiving objects:  43% (73/169)
2022-06-02T17:47:13.2957158Z Receiving objects:  44% (75/169)
2022-06-02T17:47:13.2957367Z Receiving objects:  45% (77/169)
2022-06-02T17:47:13.2957581Z Receiving objects:  46% (78/169)
2022-06-02T17:47:13.2957774Z Receiving objects:  47% (80/169)
2022-06-02T17:47:13.2957979Z Receiving objects:  48% (82/169)
2022-06-02T17:47:13.2958186Z Receiving objects:  49% (83/169)
2022-06-02T17:47:13.2958378Z Receiving objects:  50% (85/169)
2022-06-02T17:47:13.2958583Z Receiving objects:  51% (87/169)
2022-06-02T17:47:13.2958836Z Receiving objects:  52% (88/169)
2022-06-02T17:47:13.2959047Z Receiving objects:  53% (90/169)
2022-06-02T17:47:13.2959237Z Receiving objects:  54% (92/169)
2022-06-02T17:47:13.2959441Z Receiving objects:  55% (93/169)
2022-06-02T17:47:13.2959650Z Receiving objects:  56% (95/169)
2022-06-02T17:47:13.2959845Z Receiving objects:  57% (97/169)
2022-06-02T17:47:13.2960054Z Receiving objects:  58% (99/169)
2022-06-02T17:47:13.2960265Z Receiving objects:  59% (100/169)
2022-06-02T17:47:13.2960479Z Receiving objects:  60% (102/169)
2022-06-02T17:47:13.2960676Z Receiving objects:  61% (104/169)
2022-06-02T17:47:13.2960889Z Receiving objects:  62% (105/169)
2022-06-02T17:47:13.2961101Z Receiving objects:  63% (107/169)
2022-06-02T17:47:13.2961297Z Receiving objects:  64% (109/169)
2022-06-02T17:47:13.2961505Z Receiving objects:  65% (110/169)
2022-06-02T17:47:13.2961716Z Receiving objects:  66% (112/169)
2022-06-02T17:47:13.2961909Z Receiving objects:  67% (114/169)
2022-06-02T17:47:13.2962116Z Receiving objects:  68% (115/169)
2022-06-02T17:47:13.2962323Z Receiving objects:  69% (117/169)
2022-06-02T17:47:13.2962518Z Receiving objects:  70% (119/169)
2022-06-02T17:47:13.2962725Z Receiving objects:  71% (120/169)
2022-06-02T17:47:13.2962932Z Receiving objects:  72% (122/169)
2022-06-02T17:47:13.2963125Z Receiving objects:  73% (124/169)
2022-06-02T17:47:13.2963664Z remote: Total 169 (delta 60), reused 124 (delta 29), pack-reused 0        
2022-06-02T17:47:13.2963930Z Receiving objects:  74% (126/169)
2022-06-02T17:47:13.2964125Z Receiving objects:  75% (127/169)
2022-06-02T17:47:13.2964334Z Receiving objects:  76% (129/169)
2022-06-02T17:47:13.2964649Z Receiving objects:  77% (131/169)
2022-06-02T17:47:13.2964856Z Receiving objects:  78% (132/169)
2022-06-02T17:47:13.2965050Z Receiving objects:  79% (134/169)
2022-06-02T17:47:13.2965254Z Receiving objects:  80% (136/169)
2022-06-02T17:47:13.2965460Z Receiving objects:  81% (137/169)
2022-06-02T17:47:13.2965652Z Receiving objects:  82% (139/169)
2022-06-02T17:47:13.2965859Z Receiving objects:  83% (141/169)
2022-06-02T17:47:13.2966067Z Receiving objects:  84% (142/169)
2022-06-02T17:47:13.2966261Z Receiving objects:  85% (144/169)
2022-06-02T17:47:13.2966468Z Receiving objects:  86% (146/169)
2022-06-02T17:47:13.2966677Z Receiving objects:  87% (148/169)
2022-06-02T17:47:13.2966867Z Receiving objects:  88% (149/169)
2022-06-02T17:47:13.2967072Z Receiving objects:  89% (151/169)
2022-06-02T17:47:13.2967277Z Receiving objects:  90% (153/169)
2022-06-02T17:47:13.2967470Z Receiving objects:  91% (154/169)
2022-06-02T17:47:13.2967673Z Receiving objects:  92% (156/169)
2022-06-02T17:47:13.2967931Z Receiving objects:  93% (158/169)
2022-06-02T17:47:13.2968128Z Receiving objects:  94% (159/169)
2022-06-02T17:47:13.2968340Z Receiving objects:  95% (161/169)
2022-06-02T17:47:13.2968546Z Receiving objects:  96% (163/169)
2022-06-02T17:47:13.2968751Z Receiving objects:  97% (164/169)
2022-06-02T17:47:13.2968946Z Receiving objects:  98% (166/169)
2022-06-02T17:47:13.2969151Z Receiving objects:  99% (168/169)
2022-06-02T17:47:13.2969357Z Receiving objects: 100% (169/169)
2022-06-02T17:47:13.2969585Z Receiving objects: 100% (169/169), 26.27 KiB | 2.39 MiB/s, done.
2022-06-02T17:47:13.2969824Z Resolving deltas:   0% (0/60)
2022-06-02T17:47:13.2970032Z Resolving deltas:   1% (1/60)
2022-06-02T17:47:13.2970227Z Resolving deltas:   3% (2/60)
2022-06-02T17:47:13.2970436Z Resolving deltas:   5% (3/60)
2022-06-02T17:47:13.2970645Z Resolving deltas:   6% (4/60)
2022-06-02T17:47:13.2970836Z Resolving deltas:   8% (5/60)
2022-06-02T17:47:13.2971042Z Resolving deltas:  10% (6/60)
2022-06-02T17:47:13.2971249Z Resolving deltas:  11% (7/60)
2022-06-02T17:47:13.2971442Z Resolving deltas:  13% (8/60)
2022-06-02T17:47:13.2971648Z Resolving deltas:  15% (9/60)
2022-06-02T17:47:13.2971959Z Resolving deltas:  16% (10/60)
2022-06-02T17:47:13.2972154Z Resolving deltas:  18% (11/60)
2022-06-02T17:47:13.2972354Z Resolving deltas:  20% (12/60)
2022-06-02T17:47:13.2972556Z Resolving deltas:  21% (13/60)
2022-06-02T17:47:13.2972746Z Resolving deltas:  23% (14/60)
2022-06-02T17:47:13.2972947Z Resolving deltas:  25% (15/60)
2022-06-02T17:47:13.2973146Z Resolving deltas:  26% (16/60)
2022-06-02T17:47:13.2973344Z Resolving deltas:  28% (17/60)
2022-06-02T17:47:13.2973529Z Resolving deltas:  30% (18/60)
2022-06-02T17:47:13.2973726Z Resolving deltas:  31% (19/60)
2022-06-02T17:47:13.2973928Z Resolving deltas:  33% (20/60)
2022-06-02T17:47:13.2974113Z Resolving deltas:  35% (21/60)
2022-06-02T17:47:13.2974311Z Resolving deltas:  36% (22/60)
2022-06-02T17:47:13.2974606Z Resolving deltas:  38% (23/60)
2022-06-02T17:47:13.2974784Z Resolving deltas:  40% (24/60)
2022-06-02T17:47:13.2974974Z Resolving deltas:  41% (25/60)
2022-06-02T17:47:13.2975164Z Resolving deltas:  43% (26/60)
2022-06-02T17:47:13.2975338Z Resolving deltas:  45% (27/60)
2022-06-02T17:47:13.2975525Z Resolving deltas:  46% (28/60)
2022-06-02T17:47:13.2975714Z Resolving deltas:  48% (29/60)
2022-06-02T17:47:13.2975893Z Resolving deltas:  50% (30/60)
2022-06-02T17:47:13.2976082Z Resolving deltas:  51% (31/60)
2022-06-02T17:47:13.2976273Z Resolving deltas:  53% (32/60)
2022-06-02T17:47:13.2976607Z Resolving deltas:  55% (33/60)
2022-06-02T17:47:13.2976803Z Resolving deltas:  56% (34/60)
2022-06-02T17:47:13.2977000Z Resolving deltas:  58% (35/60)
2022-06-02T17:47:13.2977282Z Resolving deltas:  60% (36/60)
2022-06-02T17:47:13.2977639Z Resolving deltas:  61% (37/60)
2022-06-02T17:47:13.2977837Z Resolving deltas:  63% (38/60)
2022-06-02T17:47:13.2978035Z Resolving deltas:  65% (39/60)
2022-06-02T17:47:13.2978217Z Resolving deltas:  66% (40/60)
2022-06-02T17:47:13.2978578Z Resolving deltas:  68% (41/60)
2022-06-02T17:47:13.2978838Z Resolving deltas:  70% (42/60)
2022-06-02T17:47:13.2979026Z Resolving deltas:  71% (43/60)
2022-06-02T17:47:13.2979229Z Resolving deltas:  73% (44/60)
2022-06-02T17:47:13.2979435Z Resolving deltas:  75% (45/60)
2022-06-02T17:47:13.2979625Z Resolving deltas:  76% (46/60)
2022-06-02T17:47:13.2979828Z Resolving deltas:  78% (47/60)
2022-06-02T17:47:13.2980032Z Resolving deltas:  80% (48/60)
2022-06-02T17:47:13.2980222Z Resolving deltas:  81% (49/60)
2022-06-02T17:47:13.2980425Z Resolving deltas:  83% (50/60)
2022-06-02T17:47:13.2980627Z Resolving deltas:  85% (51/60)
2022-06-02T17:47:13.2980815Z Resolving deltas:  86% (52/60)
2022-06-02T17:47:13.2981016Z Resolving deltas:  88% (53/60)
2022-06-02T17:47:13.2981220Z Resolving deltas:  90% (54/60)
2022-06-02T17:47:13.2981409Z Resolving deltas:  91% (55/60)
2022-06-02T17:47:13.2981610Z Resolving deltas:  93% (56/60)
2022-06-02T17:47:13.2981814Z Resolving deltas:  95% (57/60)
2022-06-02T17:47:13.2982049Z Resolving deltas:  96% (58/60)
2022-06-02T17:47:13.2982258Z Resolving deltas:  98% (59/60)
2022-06-02T17:47:13.2982461Z Resolving deltas: 100% (60/60)
2022-06-02T17:47:13.2982673Z Resolving deltas: 100% (60/60), done.
2022-06-02T17:47:13.3510778Z From <REMOTE>
2022-06-02T17:47:13.3511453Z  * [new branch]      build_container_in_gh_action -> origin/build_container_in_gh_action
2022-06-02T17:47:13.3512063Z  * [new branch]      main       -> origin/main
2022-06-02T17:47:13.3542862Z [command]/usr/bin/git branch --list --remote origin/build_container_in_gh_action
2022-06-02T17:47:13.3572187Z   origin/build_container_in_gh_action
2022-06-02T17:47:13.3581315Z [command]/usr/bin/git rev-parse refs/remotes/origin/build_container_in_gh_action
2022-06-02T17:47:13.3607013Z 5f01b23c790da96d31b424a546e7494f85bd83b4
2022-06-02T17:47:13.3611316Z ##[endgroup]
2022-06-02T17:47:13.3611920Z ##[group]Determining the checkout info
2022-06-02T17:47:13.3614283Z ##[endgroup]
2022-06-02T17:47:13.3615055Z ##[group]Checking out the ref
2022-06-02T17:47:13.3620538Z [command]/usr/bin/git checkout --progress --force -B build_container_in_gh_action refs/remotes/origin/build_container_in_gh_action
2022-06-02T17:47:13.3670121Z Switched to a new branch 'build_container_in_gh_action'
2022-06-02T17:47:13.3674795Z branch 'build_container_in_gh_action' set up to track 'origin/build_container_in_gh_action'.
2022-06-02T17:47:13.3676333Z ##[endgroup]
2022-06-02T17:47:13.3711613Z [command]/usr/bin/git log -1 --format='%H'
2022-06-02T17:47:13.3736652Z '5f01b23c790da96d31b424a546e7494f85bd83b4'
2022-06-02T17:47:13.3890107Z ##[group]Run google-github-actions/[email protected]
2022-06-02T17:47:13.3890329Z with:
2022-06-02T17:47:13.3890699Z   workload_identity_provider: projects/<PROJECT_NUMBER>/locations/global/workloadIdentityPools/publish-image-gh-action/providers/publish-image-gh-action
2022-06-02T17:47:13.3891197Z   service_account: [email protected]
2022-06-02T17:47:13.3891528Z   token_format: access_token
2022-06-02T17:47:13.3891744Z   create_credentials_file: true
2022-06-02T17:47:13.3891974Z   export_environment_variables: true
2022-06-02T17:47:13.3892202Z   cleanup_credentials: true
2022-06-02T17:47:13.3892408Z   access_token_lifetime: 3600s
2022-06-02T17:47:13.3892703Z   access_token_scopes: https://www.googleapis.com/auth/cloud-platform
2022-06-02T17:47:13.3892967Z   retries: 0
2022-06-02T17:47:13.3893148Z   id_token_include_email: false
2022-06-02T17:47:13.3893349Z ##[endgroup]
2022-06-02T17:47:13.7066018Z Created credentials file at "/home/runner/work/<FOOBAR>/<FOOBAR>/gha-creds-b9557a6fd3cb9c1a.json"
2022-06-02T17:47:13.7066798Z 
2022-06-02T17:47:13.7086201Z 
2022-06-02T17:47:13.9494981Z ##[error]google-github-actions/auth failed with: retry function failed with 0 attempts: failed to generate Google Cloud access token for [email protected]: {
  "error": {
    "code": 403,
    "message": "The caller does not have permission",
    "status": "PERMISSION_DENIED"
  }
}
2022-06-02T17:47:13.9627907Z Post job cleanup.
2022-06-02T17:47:14.0208107Z Removed exported credentials at "/home/runner/work/<FOOBAR>/<FOOBAR>/gha-creds-b9557a6fd3cb9c1a.json".
2022-06-02T17:47:14.0280207Z Post job cleanup.
2022-06-02T17:47:14.1365662Z [command]/usr/bin/git version
2022-06-02T17:47:14.1409985Z git version 2.36.1
2022-06-02T17:47:14.1450661Z Temporarily overriding HOME='/home/runner/work/_temp/738dcb77-ab44-4d8f-be99-412f8a4d0876' before making global git config changes
2022-06-02T17:47:14.1452700Z Adding repository directory to the temporary git global config as a safe directory
2022-06-02T17:47:14.1458907Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/<FOOBAR>/<FOOBAR>
2022-06-02T17:47:14.1498065Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2022-06-02T17:47:14.1615781Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2022-06-02T17:47:14.1861900Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2022-06-02T17:47:14.1885566Z http.https://github.com/.extraheader
2022-06-02T17:47:14.1894659Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2022-06-02T17:47:14.1925931Z [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-06-02T17:47:14.2238197Z Post job cleanup.
2022-06-02T17:47:14.2859289Z ##[group]Removing builder
2022-06-02T17:47:14.2917687Z [command]/usr/bin/docker buildx rm builder-5f1da406-81c0-4744-b7e8-c48de0eceb92
2022-06-02T17:47:14.5882804Z ##[endgroup]
2022-06-02T17:47:14.6020511Z Cleaning up orphan processes

Additional information

I setup the GCP infrastructure using the gh-oidc module. I also gave my service account the roles/iam.serviceAccountTokenCreator role but that didn't help.

sethvargo wrote this answer on 2022-06-02

Hi @simpsonw

Have you taken a look at the troubleshooting steps for permission denied?

simpsonw wrote this answer on 2022-06-02

Hi, @sethvargo ! Thanks for the speedy response. I did look at the guide:

  1. The debug logs seem to clearly show that Run google-github-actions/[email protected] is what's failing. Unfortunately, I'm not getting much helpful context beyond that.
  2. actions/[email protected] is being called before auth
  3. The workload_identity_provider appears to be correct (i.e. it's the provider and NOT the pool)
  4. I believe gh-oidc should be setting up the correct impersonation settings. I believe it's doing that in https://github.com/terraform-google-modules/terraform-google-github-actions-runners/blob/v3.0.0/modules/gh-oidc/main.tf#L41-L46
  5. I've enabled Admin Read, Data Read, and Data Write in my Audit Logs for the IAM service but I'm still not seeing anything in my logs apart.

Is there any other troubleshooting I can do?

sethvargo wrote this answer on 2022-06-02

The error failed to generate Google Cloud access token tells me that authentication is succeeding, but then impersonating the service account is failing. What are the attribute mappings and conditions you've defined (they are variables as inputs to the module)?

simpsonw wrote this answer on 2022-06-02

Ah, I think I figured it out! I had the wrong repository in the attribute.repository/<repo> attribute of my sa_mapping. The action is past the auth stage. The build will take a bit but if it successfully builds and pushes, I will close this issue. Sorry for the trouble and thanks for your help!

simpsonw wrote this answer on 2022-06-02

The push is now failing with buildx failed with: error: failed to solve: server message: insufficient_scope: authorization failed. Do I need to provide a value for access_token_scopes?

sethvargo wrote this answer on 2022-06-02

@simpsonw - great to hear. I'd need the new debug logs to see where that's failing exactly.

simpsonw wrote this answer on 2022-06-02

@sethvargo It's working now! Had the wrong tag. Thanks again for your time and help, @sethvargo! Will close this ticket now.

More Details About Repo
Owner Name google-github-actions
Repo Name auth
Full Name google-github-actions/auth
Language TypeScript
Created Date 2021-09-16
Updated Date 2023-03-24
Star Count 573
Watcher Count 16
Fork Count 116
Issue Count 3

YOU MAY BE INTERESTED

Issue Title Created Date Updated Date