File size: 88,183 Bytes
897de04 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 |
ο»Ώ2024-05-14T13:31:18.4734740Z Current runner version: '2.316.1' 2024-05-14T13:31:18.4758634Z ##[group]Operating System 2024-05-14T13:31:18.4759398Z Ubuntu 2024-05-14T13:31:18.4759943Z 22.04.4 2024-05-14T13:31:18.4760346Z LTS 2024-05-14T13:31:18.4760825Z ##[endgroup] 2024-05-14T13:31:18.4761407Z ##[group]Runner Image 2024-05-14T13:31:18.4761915Z Image: ubuntu-22.04 2024-05-14T13:31:18.4762483Z Version: 20240422.1.0 2024-05-14T13:31:18.4763652Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240422.1/images/ubuntu/Ubuntu2204-Readme.md 2024-05-14T13:31:18.4765285Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240422.1 2024-05-14T13:31:18.4766291Z ##[endgroup] 2024-05-14T13:31:18.4766861Z ##[group]Runner Image Provisioner 2024-05-14T13:31:18.4767443Z 2.0.369.1 2024-05-14T13:31:18.4767970Z ##[endgroup] 2024-05-14T13:31:18.4769117Z ##[group]GITHUB_TOKEN Permissions 2024-05-14T13:31:18.4770859Z Contents: read 2024-05-14T13:31:18.4771353Z Metadata: read 2024-05-14T13:31:18.4772147Z ##[endgroup] 2024-05-14T13:31:18.4775456Z Secret source: Actions 2024-05-14T13:31:18.4776175Z Prepare workflow directory 2024-05-14T13:31:18.5794076Z Prepare all required actions 2024-05-14T13:31:18.5950278Z Getting action download info 2024-05-14T13:31:18.8229280Z Download action repository 'azure/login@8c334a195cbb38e46038007b304988d888bf676a' (SHA:8c334a195cbb38e46038007b304988d888bf676a) 2024-05-14T13:31:20.8490670Z Download action repository 'azure/docker-login@83efeb77770c98b620c73055fbb59b2847e17dc0' (SHA:83efeb77770c98b620c73055fbb59b2847e17dc0) 2024-05-14T13:31:21.2877309Z Download action repository 'docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226' (SHA:f95db51fddba0c2d1ec667646a06c2ce06100226) 2024-05-14T13:31:21.8096611Z Download action repository 'actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11' (SHA:b4ffde65f46336ab88eb53be808477a3936bae11) 2024-05-14T13:31:21.8433551Z Download action repository 'docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09' (SHA:0565240e2d4ab88bba5387d719585280857ece09) 2024-05-14T13:31:22.4472408Z Complete job name: build-and-push-nonprod-cache 2024-05-14T13:31:22.5225613Z ##[group]Run azure/login@8c334a195cbb38e46038007b304988d888bf676a 2024-05-14T13:31:22.5226188Z with: 2024-05-14T13:31:22.5227645Z creds: *** 2024-05-14T13:31:22.5228087Z enable-AzPSSession: false 2024-05-14T13:31:22.5228468Z environment: azurecloud 2024-05-14T13:31:22.5228822Z allow-no-subscriptions: false 2024-05-14T13:31:22.5229221Z audience: api://AzureADTokenExchange 2024-05-14T13:31:22.5229649Z auth-type: SERVICE_PRINCIPAL 2024-05-14T13:31:22.5230003Z env: 2024-05-14T13:31:22.5230284Z ENABLE_EARLY_ACCESS: false 2024-05-14T13:31:22.5230818Z DOCKER_IMAGE_CACHE_REF: ***/github/docs:main-preview 2024-05-14T13:31:22.5231295Z NONPROD_REGISTRY_USERNAME: ghdocs 2024-05-14T13:31:22.5231677Z ##[endgroup] 2024-05-14T13:31:22.6809055Z Clearing azure cli accounts from the local cache. 2024-05-14T13:31:22.6809621Z [command]/usr/bin/az account clear 2024-05-14T13:31:26.0571314Z ##[group]Run azure/login@8c334a195cbb38e46038007b304988d888bf676a 2024-05-14T13:31:26.0571858Z with: 2024-05-14T13:31:26.0573023Z creds: *** 2024-05-14T13:31:26.0573338Z enable-AzPSSession: false 2024-05-14T13:31:26.0573702Z environment: azurecloud 2024-05-14T13:31:26.0574061Z allow-no-subscriptions: false 2024-05-14T13:31:26.0574489Z audience: api://AzureADTokenExchange 2024-05-14T13:31:26.0574924Z auth-type: SERVICE_PRINCIPAL 2024-05-14T13:31:26.0575270Z env: 2024-05-14T13:31:26.0575570Z ENABLE_EARLY_ACCESS: false 2024-05-14T13:31:26.0576088Z DOCKER_IMAGE_CACHE_REF: ***/github/docs:main-preview 2024-05-14T13:31:26.0576573Z NONPROD_REGISTRY_USERNAME: ghdocs 2024-05-14T13:31:26.0576945Z ##[endgroup] 2024-05-14T13:31:26.1108589Z Running Azure CLI Login. 2024-05-14T13:31:26.6557162Z [command]/usr/bin/az cloud set -n azurecloud 2024-05-14T13:31:26.9489814Z Done setting cloud: "azurecloud" 2024-05-14T13:31:26.9492732Z 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-14T13:31:26.9495737Z Attempting Azure CLI login by using service principal with secret... 2024-05-14T13:31:28.0680303Z Subscription is set successfully. 2024-05-14T13:31:28.0681301Z Azure CLI login succeeds by using service principal with secret. 2024-05-14T13:31:28.0777411Z ##[group]Run azure/docker-login@83efeb77770c98b620c73055fbb59b2847e17dc0 2024-05-14T13:31:28.0777992Z with: 2024-05-14T13:31:28.0778326Z login-server: *** 2024-05-14T13:31:28.0778661Z username: ghdocs 2024-05-14T13:31:28.0779058Z password: *** 2024-05-14T13:31:28.0779346Z env: 2024-05-14T13:31:28.0779633Z ENABLE_EARLY_ACCESS: false 2024-05-14T13:31:28.0780151Z DOCKER_IMAGE_CACHE_REF: ***/github/docs:main-preview 2024-05-14T13:31:28.0780638Z NONPROD_REGISTRY_USERNAME: ghdocs 2024-05-14T13:31:28.0781018Z ##[endgroup] 2024-05-14T13:31:28.1930109Z DOCKER_CONFIG environment variable is set 2024-05-14T13:31:28.2071267Z ##[group]Run docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 2024-05-14T13:31:28.2071938Z with: 2024-05-14T13:31:28.2072262Z driver: docker-container 2024-05-14T13:31:28.2072980Z buildkitd-flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host 2024-05-14T13:31:28.2073725Z install: false 2024-05-14T13:31:28.2074068Z use: true 2024-05-14T13:31:28.2074381Z cleanup: true 2024-05-14T13:31:28.2074698Z env: 2024-05-14T13:31:28.2075002Z ENABLE_EARLY_ACCESS: false 2024-05-14T13:31:28.2075564Z DOCKER_IMAGE_CACHE_REF: ***/github/docs:main-preview 2024-05-14T13:31:28.2076081Z NONPROD_REGISTRY_USERNAME: ghdocs 2024-05-14T13:31:28.2076630Z DOCKER_CONFIG: /home/runner/work/_temp/docker_login_1715693488189 2024-05-14T13:31:28.2077168Z ##[endgroup] 2024-05-14T13:31:28.3487175Z ##[group]Docker info 2024-05-14T13:31:28.3512313Z [command]/usr/bin/docker version 2024-05-14T13:31:28.4088372Z Client: Docker Engine - Community 2024-05-14T13:31:28.4091794Z Version: 24.0.9 2024-05-14T13:31:28.4092441Z API version: 1.43 2024-05-14T13:31:28.4092942Z Go version: go1.20.13 2024-05-14T13:31:28.4093315Z Git commit: 2936816 2024-05-14T13:31:28.4093698Z Built: Thu Feb 1 00:48:39 2024 2024-05-14T13:31:28.4094118Z OS/Arch: linux/amd64 2024-05-14T13:31:28.4094477Z Context: default 2024-05-14T13:31:28.4094700Z 2024-05-14T13:31:28.4094911Z Server: Docker Engine - Community 2024-05-14T13:31:28.4095277Z Engine: 2024-05-14T13:31:28.4095559Z Version: 24.0.9 2024-05-14T13:31:28.4095946Z API version: 1.43 (minimum version 1.12) 2024-05-14T13:31:28.4096373Z Go version: go1.20.13 2024-05-14T13:31:28.4096730Z Git commit: fca702d 2024-05-14T13:31:28.4097108Z Built: Thu Feb 1 00:48:39 2024 2024-05-14T13:31:28.4097521Z OS/Arch: linux/amd64 2024-05-14T13:31:28.4097887Z Experimental: false 2024-05-14T13:31:28.4098695Z containerd: 2024-05-14T13:31:28.4099401Z Version: 1.6.31 2024-05-14T13:31:28.4100210Z GitCommit: e377cd56a71523140ca6ae87e30244719194a521 2024-05-14T13:31:28.4101050Z runc: 2024-05-14T13:31:28.4101558Z Version: 1.1.12 2024-05-14T13:31:28.4102452Z GitCommit: v1.1.12-0-g51d5e94 2024-05-14T13:31:28.4103202Z docker-init: 2024-05-14T13:31:28.4103738Z Version: 0.19.0 2024-05-14T13:31:28.4104360Z GitCommit: de40ad0 2024-05-14T13:31:28.4132185Z [command]/usr/bin/docker info 2024-05-14T13:31:28.5890635Z Client: Docker Engine - Community 2024-05-14T13:31:28.5891402Z Version: 24.0.9 2024-05-14T13:31:28.5891924Z Context: default 2024-05-14T13:31:28.5892462Z Debug Mode: false 2024-05-14T13:31:28.5892959Z Plugins: 2024-05-14T13:31:28.5893466Z buildx: Docker Buildx (Docker Inc.) 2024-05-14T13:31:28.5894140Z Version: v0.14.0 2024-05-14T13:31:28.5894907Z Path: /usr/libexec/docker/cli-plugins/docker-buildx 2024-05-14T13:31:28.5896243Z compose: Docker Compose (Docker Inc.) 2024-05-14T13:31:28.5896943Z Version: v2.23.3 2024-05-14T13:31:28.5897705Z Path: /usr/libexec/docker/cli-plugins/docker-compose 2024-05-14T13:31:28.5898276Z 2024-05-14T13:31:28.5898455Z Server: 2024-05-14T13:31:28.5898886Z Containers: 0 2024-05-14T13:31:28.5899346Z Running: 0 2024-05-14T13:31:28.5899845Z Paused: 0 2024-05-14T13:31:28.5900290Z Stopped: 0 2024-05-14T13:31:28.5900727Z Images: 14 2024-05-14T13:31:28.5901201Z Server Version: 24.0.9 2024-05-14T13:31:28.5901783Z Storage Driver: overlay2 2024-05-14T13:31:28.5902359Z Backing Filesystem: extfs 2024-05-14T13:31:28.5902970Z Supports d_type: true 2024-05-14T13:31:28.5903506Z Using metacopy: false 2024-05-14T13:31:28.5904058Z Native Overlay Diff: false 2024-05-14T13:31:28.5904613Z userxattr: false 2024-05-14T13:31:28.5904986Z Logging Driver: json-file 2024-05-14T13:31:28.5905342Z Cgroup Driver: cgroupfs 2024-05-14T13:31:28.5905668Z Cgroup Version: 2 2024-05-14T13:31:28.5905978Z Plugins: 2024-05-14T13:31:28.5906514Z Volume: local 2024-05-14T13:31:28.5907160Z Network: bridge host ipvlan macvlan null overlay 2024-05-14T13:31:28.5907963Z Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog 2024-05-14T13:31:28.5908557Z Swarm: inactive 2024-05-14T13:31:28.5908892Z Runtimes: io.containerd.runc.v2 runc 2024-05-14T13:31:28.5909356Z Default Runtime: runc 2024-05-14T13:31:28.5909724Z Init Binary: docker-init 2024-05-14T13:31:28.5910283Z containerd version: e377cd56a71523140ca6ae87e30244719194a521 2024-05-14T13:31:28.5911195Z runc version: v1.1.12-0-g51d5e94 2024-05-14T13:31:28.5911798Z init version: de40ad0 2024-05-14T13:31:28.5912210Z Security Options: 2024-05-14T13:31:28.5912508Z apparmor 2024-05-14T13:31:28.5912776Z seccomp 2024-05-14T13:31:28.5913051Z Profile: builtin 2024-05-14T13:31:28.5913341Z cgroupns 2024-05-14T13:31:28.5913674Z Kernel Version: 6.5.0-1018-azure 2024-05-14T13:31:28.5914066Z Operating System: Ubuntu 22.04.4 LTS 2024-05-14T13:31:28.5914479Z OSType: linux 2024-05-14T13:31:28.5914794Z Architecture: x86_64 2024-05-14T13:31:28.5915112Z CPUs: 4 2024-05-14T13:31:28.5915394Z Total Memory: 15.61GiB 2024-05-14T13:31:28.5915754Z Name: fv-az1020-841 2024-05-14T13:31:28.5916142Z ID: 584d62f5-11d9-4074-87e4-acacf60905a6 2024-05-14T13:31:28.5916556Z Docker Root Dir: /var/lib/docker 2024-05-14T13:31:28.5916929Z Debug Mode: false 2024-05-14T13:31:28.5917240Z Experimental: false 2024-05-14T13:31:28.5917563Z Insecure Registries: 2024-05-14T13:31:28.5917870Z 127.0.0.0/8 2024-05-14T13:31:28.5918168Z Live Restore Enabled: false 2024-05-14T13:31:28.5918404Z 2024-05-14T13:31:28.5919065Z ##[endgroup] 2024-05-14T13:31:28.6433411Z ##[group]Buildx version 2024-05-14T13:31:28.6460652Z [command]/usr/bin/docker buildx version 2024-05-14T13:31:28.6924563Z github.com/docker/buildx v0.14.0 171fcbeb69d67c90ba7f44f41a9e418f6a6ec1da 2024-05-14T13:31:28.6956033Z ##[endgroup] 2024-05-14T13:31:28.6964843Z ##[group]Creating a new builder instance 2024-05-14T13:31:28.7542591Z [command]/usr/bin/docker buildx create --name builder-9b11fb52-4219-4c01-bb84-a866433e28e9 --driver docker-container --buildkitd-flags --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host --use 2024-05-14T13:31:28.8064329Z builder-9b11fb52-4219-4c01-bb84-a866433e28e9 2024-05-14T13:31:28.8095285Z ##[endgroup] 2024-05-14T13:31:28.8095927Z ##[group]Booting builder 2024-05-14T13:31:28.8141197Z [command]/usr/bin/docker buildx inspect --bootstrap --builder builder-9b11fb52-4219-4c01-bb84-a866433e28e9 2024-05-14T13:31:28.8602213Z #1 [internal] booting buildkit 2024-05-14T13:31:29.0104389Z #1 pulling image moby/buildkit:buildx-stable-1 2024-05-14T13:31:31.6264934Z #1 pulling image moby/buildkit:buildx-stable-1 2.8s done 2024-05-14T13:31:31.7766594Z #1 creating container buildx_buildkit_builder-9b11fb52-4219-4c01-bb84-a866433e28e90 2024-05-14T13:31:31.9274578Z #1 creating container buildx_buildkit_builder-9b11fb52-4219-4c01-bb84-a866433e28e90 0.3s done 2024-05-14T13:31:31.9303346Z #1 DONE 3.1s 2024-05-14T13:31:32.0066938Z Name: builder-9b11fb52-4219-4c01-bb84-a866433e28e9 2024-05-14T13:31:32.0068052Z Driver: docker-container 2024-05-14T13:31:32.0068841Z Last Activity: 2024-05-14 13:31:28 +0000 UTC 2024-05-14T13:31:32.0069180Z 2024-05-14T13:31:32.0069339Z Nodes: 2024-05-14T13:31:32.0073203Z Name: builder-9b11fb52-4219-4c01-bb84-a866433e28e90 2024-05-14T13:31:32.0073988Z Endpoint: unix:///var/run/docker.sock 2024-05-14T13:31:32.0074474Z Status: running 2024-05-14T13:31:32.0075671Z BuildKit daemon flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host 2024-05-14T13:31:32.0076728Z BuildKit version: v0.13.2 2024-05-14T13:31:32.0077656Z Platforms: linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/386 2024-05-14T13:31:32.0078475Z Labels: 2024-05-14T13:31:32.0079210Z org.mobyproject.buildkit.worker.executor: oci 2024-05-14T13:31:32.0083875Z org.mobyproject.buildkit.worker.hostname: d99fbfaeabe6 2024-05-14T13:31:32.0085729Z org.mobyproject.buildkit.worker.network: host 2024-05-14T13:31:32.0087402Z org.mobyproject.buildkit.worker.oci.process-mode: sandbox 2024-05-14T13:31:32.0089116Z org.mobyproject.buildkit.worker.selinux.enabled: false 2024-05-14T13:31:32.0090668Z org.mobyproject.buildkit.worker.snapshotter: overlayfs 2024-05-14T13:31:32.0095297Z GC Policy rule#0: 2024-05-14T13:31:32.0096393Z All: false 2024-05-14T13:31:32.0098380Z Filters: type==source.local,type==exec.cachemount,type==source.git.checkout 2024-05-14T13:31:32.0100018Z Keep Duration: 48h0m0s 2024-05-14T13:31:32.0101196Z Keep Bytes: 488.3MiB 2024-05-14T13:31:32.0102394Z GC Policy rule#1: 2024-05-14T13:31:32.0103495Z All: false 2024-05-14T13:31:32.0104267Z Keep Duration: 1440h0m0s 2024-05-14T13:31:32.0105562Z Keep Bytes: 7.451GiB 2024-05-14T13:31:32.0106398Z GC Policy rule#2: 2024-05-14T13:31:32.0107614Z All: false 2024-05-14T13:31:32.0108336Z Keep Bytes: 7.451GiB 2024-05-14T13:31:32.0109238Z GC Policy rule#3: 2024-05-14T13:31:32.0109940Z All: true 2024-05-14T13:31:32.0110735Z Keep Bytes: 7.451GiB 2024-05-14T13:31:32.0119115Z ##[endgroup] 2024-05-14T13:31:32.1318623Z ##[group]Inspect builder 2024-05-14T13:31:32.1351179Z *** 2024-05-14T13:31:32.1352460Z "nodes": [ 2024-05-14T13:31:32.1353283Z *** 2024-05-14T13:31:32.1354800Z "name": "builder-9b11fb52-4219-4c01-bb84-a866433e28e90", 2024-05-14T13:31:32.1356337Z "endpoint": "unix:///var/run/docker.sock", 2024-05-14T13:31:32.1357358Z "status": "running", 2024-05-14T13:31:32.1358751Z "platforms": "linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/386", 2024-05-14T13:31:32.1360136Z "labels": *** 2024-05-14T13:31:32.1361250Z "org.mobyproject.buildkit.worker.executor": "oci", 2024-05-14T13:31:32.1363207Z "org.mobyproject.buildkit.worker.hostname": "d99fbfaeabe6", 2024-05-14T13:31:32.1364562Z "org.mobyproject.buildkit.worker.network": "host", 2024-05-14T13:31:32.1365940Z "org.mobyproject.buildkit.worker.oci.process-mode": "sandbox", 2024-05-14T13:31:32.1367268Z "org.mobyproject.buildkit.worker.selinux.enabled": "false", 2024-05-14T13:31:32.1368661Z "org.mobyproject.buildkit.worker.snapshotter": "overlayfs" 2024-05-14T13:31:32.1369689Z ***, 2024-05-14T13:31:32.1370412Z "gcPolicy": [ 2024-05-14T13:31:32.1371093Z *** 2024-05-14T13:31:32.1547697Z "all": false, 2024-05-14T13:31:32.1548475Z "filter": [ 2024-05-14T13:31:32.1549222Z "type==source.local", 2024-05-14T13:31:32.1550112Z "type==exec.cachemount", 2024-05-14T13:31:32.1551001Z "type==source.git.checkout" 2024-05-14T13:31:32.1551824Z ], 2024-05-14T13:31:32.1552733Z "keepDuration": "48h0m0s", 2024-05-14T13:31:32.1553607Z "keepBytes": "488.3MiB" 2024-05-14T13:31:32.1554480Z ***, 2024-05-14T13:31:32.1555331Z *** 2024-05-14T13:31:32.1565099Z "all": false, 2024-05-14T13:31:32.1565707Z "keepDuration": "1440h0m0s", 2024-05-14T13:31:32.1566340Z "keepBytes": "7.451GiB" 2024-05-14T13:31:32.1566737Z ***, 2024-05-14T13:31:32.1567037Z *** 2024-05-14T13:31:32.1567325Z "all": false, 2024-05-14T13:31:32.1567678Z "keepBytes": "7.451GiB" 2024-05-14T13:31:32.1568053Z ***, 2024-05-14T13:31:32.1568334Z *** 2024-05-14T13:31:32.1568622Z "all": true, 2024-05-14T13:31:32.1568956Z "keepBytes": "7.451GiB" 2024-05-14T13:31:32.1569319Z *** 2024-05-14T13:31:32.1569592Z ] 2024-05-14T13:31:32.1569855Z *** 2024-05-14T13:31:32.1570118Z ], 2024-05-14T13:31:32.1570669Z "name": "builder-9b11fb52-4219-4c01-bb84-a866433e28e9", 2024-05-14T13:31:32.1571201Z "driver": "docker-container", 2024-05-14T13:31:32.1571681Z "lastActivity": "2024-05-14T13:31:28.000Z" 2024-05-14T13:31:32.1572088Z *** 2024-05-14T13:31:32.1572720Z ##[endgroup] 2024-05-14T13:31:32.1573479Z ##[group]BuildKit version 2024-05-14T13:31:32.5651185Z builder-9b11fb52-4219-4c01-bb84-a866433e28e90: moby/buildkit:buildx-stable-1 => buildkitd github.com/moby/buildkit v0.13.2 2e18d709fefdcc2db20853ee241c75b058189d39 2024-05-14T13:31:32.5652602Z ##[endgroup] 2024-05-14T13:31:32.5783737Z ##[group]Run actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 2024-05-14T13:31:32.5784285Z with: 2024-05-14T13:31:32.5784619Z persist-credentials: false 2024-05-14T13:31:32.5784998Z repository: github/docs 2024-05-14T13:31:32.5785456Z token: *** 2024-05-14T13:31:32.5785759Z ssh-strict: true 2024-05-14T13:31:32.5786058Z clean: true 2024-05-14T13:31:32.5786380Z sparse-checkout-cone-mode: true 2024-05-14T13:31:32.5787197Z fetch-depth: 1 2024-05-14T13:31:32.5787749Z fetch-tags: false 2024-05-14T13:31:32.5788093Z show-progress: true 2024-05-14T13:31:32.5788408Z lfs: false 2024-05-14T13:31:32.5788703Z submodules: false 2024-05-14T13:31:32.5789044Z set-safe-directory: true 2024-05-14T13:31:32.5789525Z env: 2024-05-14T13:31:32.5789807Z ENABLE_EARLY_ACCESS: false 2024-05-14T13:31:32.5790342Z DOCKER_IMAGE_CACHE_REF: ***/github/docs:main-preview 2024-05-14T13:31:32.5790834Z NONPROD_REGISTRY_USERNAME: ghdocs 2024-05-14T13:31:32.5791387Z DOCKER_CONFIG: /home/runner/work/_temp/docker_login_1715693488189 2024-05-14T13:31:32.5791893Z ##[endgroup] 2024-05-14T13:31:32.6633032Z Syncing repository: github/docs 2024-05-14T13:31:32.6634127Z ##[group]Getting Git version info 2024-05-14T13:31:32.6635001Z Working directory is '/home/runner/work/docs/docs' 2024-05-14T13:31:32.6636116Z [command]/usr/bin/git version 2024-05-14T13:31:32.6648641Z git version 2.43.2 2024-05-14T13:31:32.6672549Z ##[endgroup] 2024-05-14T13:31:32.6693404Z Temporarily overriding HOME='/home/runner/work/_temp/bd08ba59-5b59-4de5-8781-dce945157ebe' before making global git config changes 2024-05-14T13:31:32.6695233Z Adding repository directory to the temporary git global config as a safe directory 2024-05-14T13:31:32.6696736Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/docs/docs 2024-05-14T13:31:32.6723049Z Deleting the contents of '/home/runner/work/docs/docs' 2024-05-14T13:31:32.6728635Z ##[group]Initializing the repository 2024-05-14T13:31:32.6731577Z [command]/usr/bin/git init /home/runner/work/docs/docs 2024-05-14T13:31:32.6801189Z hint: Using 'master' as the name for the initial branch. This default branch name 2024-05-14T13:31:32.6802565Z hint: is subject to change. To configure the initial branch name to use in all 2024-05-14T13:31:32.6803801Z hint: of your new repositories, which will suppress this warning, call: 2024-05-14T13:31:32.6804678Z hint: 2024-05-14T13:31:32.6805337Z hint: git config --global init.defaultBranch <name> 2024-05-14T13:31:32.6806068Z hint: 2024-05-14T13:31:32.6806877Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2024-05-14T13:31:32.6808188Z hint: 'development'. The just-created branch can be renamed via this command: 2024-05-14T13:31:32.6809398Z hint: 2024-05-14T13:31:32.6809913Z hint: git branch -m <name> 2024-05-14T13:31:32.6811762Z Initialized empty Git repository in /home/runner/work/docs/docs/.git/ 2024-05-14T13:31:32.6821146Z [command]/usr/bin/git remote add origin https://github.com/github/docs 2024-05-14T13:31:32.6856682Z ##[endgroup] 2024-05-14T13:31:32.6857572Z ##[group]Disabling automatic garbage collection 2024-05-14T13:31:32.6860757Z [command]/usr/bin/git config --local gc.auto 0 2024-05-14T13:31:32.6891985Z ##[endgroup] 2024-05-14T13:31:32.6892952Z ##[group]Setting up auth 2024-05-14T13:31:32.6897563Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-05-14T13:31:32.6928729Z [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-14T13:31:32.7241938Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-05-14T13:31:32.7269805Z [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-14T13:31:32.7496529Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-05-14T13:31:32.7533783Z ##[endgroup] 2024-05-14T13:31:32.7534703Z ##[group]Fetching the repository 2024-05-14T13:31:32.7543394Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +9ce0c15fbf4f5bff2111e181125a14235c7a402e:refs/remotes/origin/main 2024-05-14T13:31:36.3987899Z From https://github.com/github/docs 2024-05-14T13:31:36.3988966Z * [new ref] 9ce0c15fbf4f5bff2111e181125a14235c7a402e -> origin/main 2024-05-14T13:31:36.4014188Z ##[endgroup] 2024-05-14T13:31:36.4014896Z ##[group]Determining the checkout info 2024-05-14T13:31:36.4016708Z ##[endgroup] 2024-05-14T13:31:36.4017565Z ##[group]Checking out the ref 2024-05-14T13:31:36.4021539Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2024-05-14T13:31:37.5310099Z Updating files: 97% (9122/9349) 2024-05-14T13:31:37.5360038Z Updating files: 98% (9163/9349) 2024-05-14T13:31:37.6030340Z Updating files: 99% (9256/9349) 2024-05-14T13:31:37.6031071Z Updating files: 100% (9349/9349) 2024-05-14T13:31:37.6031733Z Updating files: 100% (9349/9349), done. 2024-05-14T13:31:37.6143648Z Switched to a new branch 'main' 2024-05-14T13:31:37.6144440Z branch 'main' set up to track 'origin/main'. 2024-05-14T13:31:37.6206985Z ##[endgroup] 2024-05-14T13:31:37.6246425Z [command]/usr/bin/git log -1 --format='%H' 2024-05-14T13:31:37.6271311Z '9ce0c15fbf4f5bff2111e181125a14235c7a402e' 2024-05-14T13:31:37.6279393Z ##[group]Removing auth 2024-05-14T13:31:37.6283124Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-05-14T13:31:37.6310901Z [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-14T13:31:37.6552103Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-05-14T13:31:37.6571820Z http.https://github.com/.extraheader 2024-05-14T13:31:37.6581278Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2024-05-14T13:31:37.6610677Z [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-14T13:31:37.6847216Z ##[endgroup] 2024-05-14T13:31:37.7001779Z ##[group]Run actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 2024-05-14T13:31:37.7002329Z with: 2024-05-14T13:31:37.7002633Z repository: github/docs-early-access 2024-05-14T13:31:37.7003149Z token: *** 2024-05-14T13:31:37.7003661Z path: docs-early-access 2024-05-14T13:31:37.7004000Z ref: main 2024-05-14T13:31:37.7004279Z ssh-strict: true 2024-05-14T13:31:37.7004605Z persist-credentials: true 2024-05-14T13:31:37.7004952Z clean: true 2024-05-14T13:31:37.7005265Z sparse-checkout-cone-mode: true 2024-05-14T13:31:37.7005637Z fetch-depth: 1 2024-05-14T13:31:37.7005943Z fetch-tags: false 2024-05-14T13:31:37.7006255Z show-progress: true 2024-05-14T13:31:37.7006569Z lfs: false 2024-05-14T13:31:37.7006856Z submodules: false 2024-05-14T13:31:37.7007173Z set-safe-directory: true 2024-05-14T13:31:37.7007505Z env: 2024-05-14T13:31:37.7007790Z ENABLE_EARLY_ACCESS: false 2024-05-14T13:31:37.7008318Z DOCKER_IMAGE_CACHE_REF: ***/github/docs:main-preview 2024-05-14T13:31:37.7008840Z NONPROD_REGISTRY_USERNAME: ghdocs 2024-05-14T13:31:37.7009355Z DOCKER_CONFIG: /home/runner/work/_temp/docker_login_1715693488189 2024-05-14T13:31:37.7009853Z ##[endgroup] 2024-05-14T13:31:37.7737892Z Syncing repository: github/docs-early-access 2024-05-14T13:31:37.7744203Z ##[group]Getting Git version info 2024-05-14T13:31:37.7745403Z Working directory is '/home/runner/work/docs/docs/docs-early-access' 2024-05-14T13:31:37.7774641Z [command]/usr/bin/git version 2024-05-14T13:31:37.7812107Z git version 2.43.2 2024-05-14T13:31:37.7836603Z ##[endgroup] 2024-05-14T13:31:37.7848676Z Temporarily overriding HOME='/home/runner/work/_temp/bd5200f3-2d6a-4a43-bead-e191170992f5' before making global git config changes 2024-05-14T13:31:37.7850488Z Adding repository directory to the temporary git global config as a safe directory 2024-05-14T13:31:37.7853452Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/docs/docs/docs-early-access 2024-05-14T13:31:37.7884815Z ##[group]Initializing the repository 2024-05-14T13:31:37.7887862Z [command]/usr/bin/git init /home/runner/work/docs/docs/docs-early-access 2024-05-14T13:31:37.7917770Z hint: Using 'master' as the name for the initial branch. This default branch name 2024-05-14T13:31:37.7919392Z hint: is subject to change. To configure the initial branch name to use in all 2024-05-14T13:31:37.7920822Z hint: of your new repositories, which will suppress this warning, call: 2024-05-14T13:31:37.7921909Z hint: 2024-05-14T13:31:37.7922852Z hint: git config --global init.defaultBranch <name> 2024-05-14T13:31:37.7923694Z hint: 2024-05-14T13:31:37.7924646Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2024-05-14T13:31:37.7926086Z hint: 'development'. The just-created branch can be renamed via this command: 2024-05-14T13:31:37.7927042Z hint: 2024-05-14T13:31:37.7927602Z hint: git branch -m <name> 2024-05-14T13:31:37.7929917Z Initialized empty Git repository in /home/runner/work/docs/docs/docs-early-access/.git/ 2024-05-14T13:31:37.7939282Z [command]/usr/bin/git remote add origin https://github.com/github/docs-early-access 2024-05-14T13:31:37.7970016Z ##[endgroup] 2024-05-14T13:31:37.7971008Z ##[group]Disabling automatic garbage collection 2024-05-14T13:31:37.7973844Z [command]/usr/bin/git config --local gc.auto 0 2024-05-14T13:31:37.8005203Z ##[endgroup] 2024-05-14T13:31:37.8006166Z ##[group]Setting up auth 2024-05-14T13:31:37.8011254Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-05-14T13:31:37.8040997Z [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-14T13:31:37.8270349Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-05-14T13:31:37.8298860Z [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-14T13:31:37.8528054Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-05-14T13:31:37.8565605Z ##[endgroup] 2024-05-14T13:31:37.8566937Z ##[group]Fetching the repository 2024-05-14T13:31:37.8574718Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/main*:refs/remotes/origin/main* +refs/tags/main*:refs/tags/main* 2024-05-14T13:31:38.4785896Z From https://github.com/github/docs-early-access 2024-05-14T13:31:38.4787569Z * [new branch] main -> origin/main 2024-05-14T13:31:38.4809264Z ##[endgroup] 2024-05-14T13:31:38.4809824Z ##[group]Determining the checkout info 2024-05-14T13:31:38.4816320Z [command]/usr/bin/git branch --list --remote origin/main 2024-05-14T13:31:38.4838038Z origin/main 2024-05-14T13:31:38.4844065Z ##[endgroup] 2024-05-14T13:31:38.4845088Z ##[group]Checking out the ref 2024-05-14T13:31:38.4848737Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2024-05-14T13:31:38.5313819Z Switched to a new branch 'main' 2024-05-14T13:31:38.5314955Z branch 'main' set up to track 'origin/main'. 2024-05-14T13:31:38.5323002Z ##[endgroup] 2024-05-14T13:31:38.5357446Z [command]/usr/bin/git log -1 --format='%H' 2024-05-14T13:31:38.5378671Z '48627f2a3f032ecdee9b789b4e6c45479fb29162' 2024-05-14T13:31:38.5548359Z ##[group]Run src/early-access/scripts/merge-early-access.sh 2024-05-14T13:31:38.5549055Z [36;1msrc/early-access/scripts/merge-early-access.sh[0m 2024-05-14T13:31:38.5781682Z shell: /usr/bin/bash -e ***0*** 2024-05-14T13:31:38.5782093Z env: 2024-05-14T13:31:38.5782398Z ENABLE_EARLY_ACCESS: false 2024-05-14T13:31:38.5782951Z DOCKER_IMAGE_CACHE_REF: ***/github/docs:main-preview 2024-05-14T13:31:38.5783465Z NONPROD_REGISTRY_USERNAME: ghdocs 2024-05-14T13:31:38.5784013Z DOCKER_CONFIG: /home/runner/work/_temp/docker_login_1715693488189 2024-05-14T13:31:38.5784539Z ##[endgroup] 2024-05-14T13:31:38.6046419Z ##[group]Run src/workflows/prune-for-preview-env.sh 2024-05-14T13:31:38.6046992Z [36;1msrc/workflows/prune-for-preview-env.sh[0m 2024-05-14T13:31:38.6093174Z shell: /usr/bin/bash -e ***0*** 2024-05-14T13:31:38.6093569Z env: 2024-05-14T13:31:38.6093858Z ENABLE_EARLY_ACCESS: false 2024-05-14T13:31:38.6094385Z DOCKER_IMAGE_CACHE_REF: ***/github/docs:main-preview 2024-05-14T13:31:38.6094873Z NONPROD_REGISTRY_USERNAME: ghdocs 2024-05-14T13:31:38.6095388Z DOCKER_CONFIG: /home/runner/work/_temp/docker_login_1715693488189 2024-05-14T13:31:38.6095891Z ##[endgroup] 2024-05-14T13:31:38.6264998Z ##[group]Run docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 2024-05-14T13:31:38.6265586Z with: 2024-05-14T13:31:38.6265861Z context: . 2024-05-14T13:31:38.6266167Z push: true 2024-05-14T13:31:38.6266469Z target: preview 2024-05-14T13:31:38.6267188Z tags: ***/github/docs:main-preview 2024-05-14T13:31:38.6267796Z cache-from: type=registry,ref=***/github/docs:main-preview 2024-05-14T13:31:38.6268494Z cache-to: type=registry,mode=max,ref=***/github/docs:main-preview 2024-05-14T13:31:38.6269013Z load: false 2024-05-14T13:31:38.6269299Z no-cache: false 2024-05-14T13:31:38.6269610Z pull: false 2024-05-14T13:31:38.6270034Z github-token: *** 2024-05-14T13:31:38.6270339Z env: 2024-05-14T13:31:38.6270623Z ENABLE_EARLY_ACCESS: false 2024-05-14T13:31:38.6271133Z DOCKER_IMAGE_CACHE_REF: ***/github/docs:main-preview 2024-05-14T13:31:38.6271617Z NONPROD_REGISTRY_USERNAME: ghdocs 2024-05-14T13:31:38.6272160Z DOCKER_CONFIG: /home/runner/work/_temp/docker_login_1715693488189 2024-05-14T13:31:38.6272679Z ##[endgroup] 2024-05-14T13:31:38.7757482Z ##[group]GitHub Actions runtime token ACs 2024-05-14T13:31:38.7782622Z refs/heads/main: read/write 2024-05-14T13:31:38.7783763Z ##[endgroup] 2024-05-14T13:31:38.7784773Z ##[group]Docker info 2024-05-14T13:31:38.7815481Z [command]/usr/bin/docker version 2024-05-14T13:31:38.8016657Z Client: Docker Engine - Community 2024-05-14T13:31:38.8019255Z Version: 24.0.9 2024-05-14T13:31:38.8019850Z API version: 1.43 2024-05-14T13:31:38.8020440Z Go version: go1.20.13 2024-05-14T13:31:38.8023571Z Git commit: 2936816 2024-05-14T13:31:38.8024545Z Built: Thu Feb 1 00:48:39 2024 2024-05-14T13:31:38.8025109Z OS/Arch: linux/amd64 2024-05-14T13:31:38.8025760Z Context: default 2024-05-14T13:31:38.8026212Z 2024-05-14T13:31:38.8026575Z Server: Docker Engine - Community 2024-05-14T13:31:38.8027437Z Engine: 2024-05-14T13:31:38.8027917Z Version: 24.0.9 2024-05-14T13:31:38.8028585Z API version: 1.43 (minimum version 1.12) 2024-05-14T13:31:38.8029314Z Go version: go1.20.13 2024-05-14T13:31:38.8029903Z Git commit: fca702d 2024-05-14T13:31:38.8030517Z Built: Thu Feb 1 00:48:39 2024 2024-05-14T13:31:38.8031202Z OS/Arch: linux/amd64 2024-05-14T13:31:38.8031811Z Experimental: false 2024-05-14T13:31:38.8032358Z containerd: 2024-05-14T13:31:38.8032825Z Version: 1.6.31 2024-05-14T13:31:38.8033535Z GitCommit: e377cd56a71523140ca6ae87e30244719194a521 2024-05-14T13:31:38.8034305Z runc: 2024-05-14T13:31:38.8034778Z Version: 1.1.12 2024-05-14T13:31:38.8035474Z GitCommit: v1.1.12-0-g51d5e94 2024-05-14T13:31:38.8036159Z docker-init: 2024-05-14T13:31:38.8036587Z Version: 0.19.0 2024-05-14T13:31:38.8036930Z GitCommit: de40ad0 2024-05-14T13:31:38.8060807Z [command]/usr/bin/docker info 2024-05-14T13:31:38.8501177Z Client: Docker Engine - Community 2024-05-14T13:31:38.8501971Z Version: 24.0.9 2024-05-14T13:31:38.8502503Z Context: default 2024-05-14T13:31:38.8503032Z Debug Mode: false 2024-05-14T13:31:38.8503528Z Plugins: 2024-05-14T13:31:38.8504041Z buildx: Docker Buildx (Docker Inc.) 2024-05-14T13:31:38.8504698Z Version: v0.14.0 2024-05-14T13:31:38.8505473Z Path: /usr/libexec/docker/cli-plugins/docker-buildx 2024-05-14T13:31:38.8506283Z compose: Docker Compose (Docker Inc.) 2024-05-14T13:31:38.8507179Z Version: v2.23.3 2024-05-14T13:31:38.8507943Z Path: /usr/libexec/docker/cli-plugins/docker-compose 2024-05-14T13:31:38.8508572Z 2024-05-14T13:31:38.8508758Z Server: 2024-05-14T13:31:38.8509208Z Containers: 1 2024-05-14T13:31:38.8509687Z Running: 1 2024-05-14T13:31:38.8510181Z Paused: 0 2024-05-14T13:31:38.8510623Z Stopped: 0 2024-05-14T13:31:38.8511078Z Images: 15 2024-05-14T13:31:38.8511546Z Server Version: 24.0.9 2024-05-14T13:31:38.8512110Z Storage Driver: overlay2 2024-05-14T13:31:38.8512701Z Backing Filesystem: extfs 2024-05-14T13:31:38.8514031Z Supports d_type: true 2024-05-14T13:31:38.8514615Z Using metacopy: false 2024-05-14T13:31:38.8515191Z Native Overlay Diff: false 2024-05-14T13:31:38.8515690Z userxattr: false 2024-05-14T13:31:38.8516074Z Logging Driver: json-file 2024-05-14T13:31:38.8516427Z Cgroup Driver: cgroupfs 2024-05-14T13:31:38.8516767Z Cgroup Version: 2 2024-05-14T13:31:38.8517067Z Plugins: 2024-05-14T13:31:38.8517342Z Volume: local 2024-05-14T13:31:38.8517745Z Network: bridge host ipvlan macvlan null overlay 2024-05-14T13:31:38.8518491Z Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog 2024-05-14T13:31:38.8519111Z Swarm: inactive 2024-05-14T13:31:38.8519450Z Runtimes: io.containerd.runc.v2 runc 2024-05-14T13:31:38.8520155Z Default Runtime: runc 2024-05-14T13:31:38.8520780Z Init Binary: docker-init 2024-05-14T13:31:38.8521393Z containerd version: e377cd56a71523140ca6ae87e30244719194a521 2024-05-14T13:31:38.8521952Z runc version: v1.1.12-0-g51d5e94 2024-05-14T13:31:38.8522539Z init version: de40ad0 2024-05-14T13:31:38.8522876Z Security Options: 2024-05-14T13:31:38.8523179Z apparmor 2024-05-14T13:31:38.8523451Z seccomp 2024-05-14T13:31:38.8523738Z Profile: builtin 2024-05-14T13:31:38.8524388Z cgroupns 2024-05-14T13:31:38.8524874Z Kernel Version: 6.5.0-1018-azure 2024-05-14T13:31:38.8525278Z Operating System: Ubuntu 22.04.4 LTS 2024-05-14T13:31:38.8525670Z OSType: linux 2024-05-14T13:31:38.8526109Z Architecture: x86_64 2024-05-14T13:31:38.8526613Z CPUs: 4 2024-05-14T13:31:38.8527062Z Total Memory: 15.61GiB 2024-05-14T13:31:38.8527647Z Name: fv-az1020-841 2024-05-14T13:31:38.8528559Z ID: 584d62f5-11d9-4074-87e4-acacf60905a6 2024-05-14T13:31:38.8529259Z Docker Root Dir: /var/lib/docker 2024-05-14T13:31:38.8529858Z Debug Mode: false 2024-05-14T13:31:38.8530370Z Experimental: false 2024-05-14T13:31:38.8530897Z Insecure Registries: 2024-05-14T13:31:38.8531403Z 127.0.0.0/8 2024-05-14T13:31:38.8531889Z Live Restore Enabled: false 2024-05-14T13:31:38.8532283Z 2024-05-14T13:31:38.8532951Z ##[endgroup] 2024-05-14T13:31:38.8533772Z ##[group]Proxy configuration 2024-05-14T13:31:38.8534364Z No proxy configuration found 2024-05-14T13:31:38.8535255Z ##[endgroup] 2024-05-14T13:31:38.9068220Z ##[group]Buildx version 2024-05-14T13:31:38.9087058Z [command]/usr/bin/docker buildx version 2024-05-14T13:31:38.9517607Z github.com/docker/buildx v0.14.0 171fcbeb69d67c90ba7f44f41a9e418f6a6ec1da 2024-05-14T13:31:38.9544760Z ##[endgroup] 2024-05-14T13:31:40.1923060Z [command]/usr/bin/docker buildx build --cache-from type=registry,ref=***/github/docs:main-preview --cache-to type=registry,mode=max,ref=***/github/docs:main-preview --iidfile /tmp/docker-actions-toolkit-lQFbTS/iidfile --tag ***/github/docs:main-preview --target preview --metadata-file /tmp/docker-actions-toolkit-lQFbTS/metadata-file --push . 2024-05-14T13:31:40.5493569Z #0 building with "builder-9b11fb52-4219-4c01-bb84-a866433e28e9" instance using docker-container driver 2024-05-14T13:31:40.5494559Z 2024-05-14T13:31:40.5494942Z #1 [internal] load build definition from Dockerfile 2024-05-14T13:31:40.5495759Z #1 transferring dockerfile: 3.54kB done 2024-05-14T13:31:40.5496199Z #1 DONE 0.0s 2024-05-14T13:31:40.5496383Z 2024-05-14T13:31:40.5497180Z #2 [internal] load metadata for docker.io/library/node:20-alpine@sha256:7a91aa397f2e2dfbfcdad2e2d72599f374e0b0172be1d86eeb73f1d33f36a4b2 2024-05-14T13:31:40.8921618Z #2 DONE 0.5s 2024-05-14T13:31:41.1309785Z 2024-05-14T13:31:41.1310407Z #3 [internal] load .dockerignore 2024-05-14T13:31:41.1311189Z #3 transferring context: 358B done 2024-05-14T13:31:41.1311644Z #3 DONE 0.0s 2024-05-14T13:31:41.1311854Z 2024-05-14T13:31:41.1311999Z #4 [internal] load build context 2024-05-14T13:31:41.1312377Z #4 DONE 0.0s 2024-05-14T13:31:41.1312630Z 2024-05-14T13:31:41.1313539Z #5 [base 1/2] FROM docker.io/library/node:20-alpine@sha256:7a91aa397f2e2dfbfcdad2e2d72599f374e0b0172be1d86eeb73f1d33f36a4b2 2024-05-14T13:31:41.1315274Z #5 resolve docker.io/library/node:20-alpine@sha256:7a91aa397f2e2dfbfcdad2e2d72599f374e0b0172be1d86eeb73f1d33f36a4b2 done 2024-05-14T13:31:41.1316118Z #5 DONE 0.0s 2024-05-14T13:31:41.1316306Z 2024-05-14T13:31:41.1316630Z #6 [auth] github/docs:pull token for *** 2024-05-14T13:31:41.1317075Z #6 DONE 0.0s 2024-05-14T13:31:41.1317253Z 2024-05-14T13:31:41.1317687Z #7 importing cache manifest from ***/github/docs:main-preview 2024-05-14T13:31:41.2778212Z #7 inferred cache manifest type: application/vnd.oci.image.index.v1+json done 2024-05-14T13:31:41.4986166Z #7 DONE 0.6s 2024-05-14T13:31:41.6061449Z 2024-05-14T13:31:41.6062469Z #4 [internal] load build context 2024-05-14T13:31:45.9459857Z #4 transferring context: 333.55MB 4.4s 2024-05-14T13:31:46.2647442Z #4 transferring context: 345.98MB 4.6s done 2024-05-14T13:31:46.2648198Z #4 DONE 4.6s 2024-05-14T13:31:46.2648488Z 2024-05-14T13:31:46.2648740Z #8 [base 2/2] WORKDIR /home/node/app 2024-05-14T13:31:46.2649412Z #8 CACHED 2024-05-14T13:31:46.2649695Z 2024-05-14T13:31:46.2650524Z #9 [all_deps 1/3] COPY --chown=node:node package.json package-lock.json ./ 2024-05-14T13:31:46.2651436Z #9 CACHED 2024-05-14T13:31:46.2651921Z 2024-05-14T13:31:46.2652154Z #10 [builder 1/9] COPY src ./src 2024-05-14T13:31:46.2652744Z #10 CACHED 2024-05-14T13:31:46.2653005Z 2024-05-14T13:31:46.2654924Z #11 [all_deps 2/3] RUN npm ci --no-optional --registry https://registry.npmjs.org/ 2024-05-14T13:31:46.2656105Z #11 CACHED 2024-05-14T13:31:46.2656522Z 2024-05-14T13:31:46.2657236Z #12 [builder 3/9] COPY .pageinfo-cache.json.br* ./.pageinfo-cache.json.br 2024-05-14T13:31:46.2658266Z #12 CACHED 2024-05-14T13:31:46.2658578Z 2024-05-14T13:31:46.2659496Z #13 [all_deps 3/3] RUN npm i @next/swc-linux-x64-musl --no-save || npm i @next/swc-linux-arm64-musl --no-save 2024-05-14T13:31:46.2660829Z #13 CACHED 2024-05-14T13:31:46.2661119Z 2024-05-14T13:31:46.2661671Z #14 [builder 2/9] COPY .remotejson-cache* ./.remotejson-cache 2024-05-14T13:31:46.2662534Z #14 CACHED 2024-05-14T13:31:46.2662818Z 2024-05-14T13:31:46.2663204Z #15 [builder 4/9] COPY content/index.md ./content/index.md 2024-05-14T13:31:46.2663829Z #15 CACHED 2024-05-14T13:31:46.2664105Z 2024-05-14T13:31:46.2664428Z #16 [builder 5/9] COPY content/rest ./content/rest 2024-05-14T13:31:46.2665035Z #16 CACHED 2024-05-14T13:31:46.4164080Z 2024-05-14T13:31:46.4164520Z #16 [builder 5/9] COPY content/rest ./content/rest 2024-05-14T13:31:46.4197042Z #16 sha256:b56bf523a3f1a046077496e84a68061cc4dc6ead1a3f5eeff6d1f7d12312405e 0B / 107.08kB 0.2s 2024-05-14T13:31:46.5330405Z #16 sha256:b56bf523a3f1a046077496e84a68061cc4dc6ead1a3f5eeff6d1f7d12312405e 107.08kB / 107.08kB 0.3s done 2024-05-14T13:31:46.5332489Z #16 sha256:d23c36d87ec37815552be9869fd35021ef609147f0ff36f4bcfaa00175b272cc 0B / 1.55kB 0.2s 2024-05-14T13:31:46.5334287Z #16 sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 0B / 32B 0.2s 2024-05-14T13:31:46.5335988Z #16 sha256:a79e3fcfbae8b7873f943cbe2adf1b8326be6a18027ae3c33b2fef254311d113 0B / 17.77MB 0.2s 2024-05-14T13:31:46.6841881Z #16 sha256:d23c36d87ec37815552be9869fd35021ef609147f0ff36f4bcfaa00175b272cc 1.55kB / 1.55kB 0.3s done 2024-05-14T13:31:46.6843791Z #16 sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 32B / 32B 0.3s done 2024-05-14T13:31:46.6845135Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 0B / 223.82MB 0.2s 2024-05-14T13:31:46.8333398Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 0B / 155.74MB 0.2s 2024-05-14T13:31:46.8334724Z #16 sha256:c131742d77e7158d5b5665efc10cf10b53680e0cbf76136cb77dae82ec31df59 109.62kB / 109.62kB 0.2s done 2024-05-14T13:31:47.1350997Z #16 sha256:6ed45cc87094e8e5c58b3487864dc048046811802d55ed5173ae85e3476b2a07 142B / 142B 0.2s done 2024-05-14T13:31:47.2838365Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 18.87MB / 223.82MB 0.8s 2024-05-14T13:31:47.2839690Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 12.58MB / 155.74MB 0.6s 2024-05-14T13:31:47.2841105Z #16 sha256:db3e2f2b60543c32c84a427cc2129966358695d5b298456169c12df7ee2fd1e0 455B / 455B 0.1s done 2024-05-14T13:31:47.4337030Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 30.41MB / 223.82MB 0.9s 2024-05-14T13:31:47.4338280Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 25.17MB / 155.74MB 0.8s 2024-05-14T13:31:47.4339428Z #16 sha256:2bde47b9f7c35f14f2e93c485556b9c368305fa0c78e364b4c28942bd0721433 0B / 1.38MB 0.2s 2024-05-14T13:31:47.5601260Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 36.70MB / 155.74MB 0.9s 2024-05-14T13:31:47.5603239Z #16 sha256:2bde47b9f7c35f14f2e93c485556b9c368305fa0c78e364b4c28942bd0721433 1.38MB / 1.38MB 0.4s done 2024-05-14T13:31:47.7109306Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 48.23MB / 155.74MB 1.1s 2024-05-14T13:31:47.7111193Z #16 sha256:3bce96456554715f6c03922c7378bb770bf188b10c3f15f2cf35ea96268e7905 0B / 42.20MB 0.2s 2024-05-14T13:31:47.8608981Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 50.33MB / 223.82MB 1.2s 2024-05-14T13:31:47.8610773Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 60.82MB / 155.74MB 1.2s 2024-05-14T13:31:48.0105903Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 62.91MB / 223.82MB 1.4s 2024-05-14T13:31:48.0107451Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 72.35MB / 155.74MB 1.4s 2024-05-14T13:31:48.1609785Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 83.89MB / 155.74MB 1.5s 2024-05-14T13:31:48.1611261Z #16 sha256:3bce96456554715f6c03922c7378bb770bf188b10c3f15f2cf35ea96268e7905 8.39MB / 42.20MB 0.6s 2024-05-14T13:31:48.3103569Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 85.98MB / 223.82MB 1.7s 2024-05-14T13:31:48.3105479Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 96.47MB / 155.74MB 1.7s 2024-05-14T13:31:48.3107524Z #16 sha256:3bce96456554715f6c03922c7378bb770bf188b10c3f15f2cf35ea96268e7905 18.87MB / 42.20MB 0.8s 2024-05-14T13:31:48.4603380Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 109.05MB / 155.74MB 1.8s 2024-05-14T13:31:48.4604637Z #16 sha256:3bce96456554715f6c03922c7378bb770bf188b10c3f15f2cf35ea96268e7905 31.46MB / 42.20MB 0.9s 2024-05-14T13:31:48.6132439Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 109.05MB / 223.82MB 2.0s 2024-05-14T13:31:48.6133878Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 121.63MB / 155.74MB 2.0s 2024-05-14T13:31:48.6134856Z #16 sha256:3bce96456554715f6c03922c7378bb770bf188b10c3f15f2cf35ea96268e7905 42.20MB / 42.20MB 1.1s 2024-05-14T13:31:48.7836199Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 132.12MB / 223.82MB 2.3s 2024-05-14T13:31:48.7837612Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 133.17MB / 155.74MB 2.1s 2024-05-14T13:31:48.7838671Z #16 sha256:3bce96456554715f6c03922c7378bb770bf188b10c3f15f2cf35ea96268e7905 42.20MB / 42.20MB 1.1s done 2024-05-14T13:31:48.9339247Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 144.70MB / 155.74MB 2.3s 2024-05-14T13:31:48.9340858Z #16 sha256:4abcf20661432fb2d719aaf90656f55c287f8ca915dc1c92ec14ff61e67fbaf8 0B / 3.41MB 0.2s 2024-05-14T13:31:49.0701244Z #16 sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 155.74MB / 155.74MB 2.5s done 2024-05-14T13:31:49.1942735Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 155.19MB / 223.82MB 2.6s 2024-05-14T13:31:49.1944051Z #16 sha256:4abcf20661432fb2d719aaf90656f55c287f8ca915dc1c92ec14ff61e67fbaf8 3.41MB / 3.41MB 0.5s done 2024-05-14T13:31:49.1945606Z #16 extracting sha256:4abcf20661432fb2d719aaf90656f55c287f8ca915dc1c92ec14ff61e67fbaf8 0.1s done 2024-05-14T13:31:49.3841107Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 177.23MB / 223.82MB 2.9s 2024-05-14T13:31:49.3842847Z #16 extracting sha256:3bce96456554715f6c03922c7378bb770bf188b10c3f15f2cf35ea96268e7905 2024-05-14T13:31:49.5335966Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 188.74MB / 223.82MB 3.0s 2024-05-14T13:31:49.6834250Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 201.33MB / 223.82MB 3.2s 2024-05-14T13:31:49.9838559Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 223.82MB / 223.82MB 3.5s 2024-05-14T13:31:50.2511275Z #16 sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 223.82MB / 223.82MB 3.7s done 2024-05-14T13:31:50.4757396Z #16 extracting sha256:3bce96456554715f6c03922c7378bb770bf188b10c3f15f2cf35ea96268e7905 1.1s done 2024-05-14T13:31:50.4759010Z #16 extracting sha256:2bde47b9f7c35f14f2e93c485556b9c368305fa0c78e364b4c28942bd0721433 0.0s done 2024-05-14T13:31:50.4760130Z #16 extracting sha256:db3e2f2b60543c32c84a427cc2129966358695d5b298456169c12df7ee2fd1e0 done 2024-05-14T13:31:50.4761290Z #16 extracting sha256:6ed45cc87094e8e5c58b3487864dc048046811802d55ed5173ae85e3476b2a07 done 2024-05-14T13:31:50.4762398Z #16 extracting sha256:c131742d77e7158d5b5665efc10cf10b53680e0cbf76136cb77dae82ec31df59 done 2024-05-14T13:31:50.4763522Z #16 extracting sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 2024-05-14T13:31:51.5263647Z #16 sha256:a79e3fcfbae8b7873f943cbe2adf1b8326be6a18027ae3c33b2fef254311d113 3.15MB / 17.77MB 5.3s 2024-05-14T13:31:51.6760961Z #16 sha256:a79e3fcfbae8b7873f943cbe2adf1b8326be6a18027ae3c33b2fef254311d113 14.68MB / 17.77MB 5.4s 2024-05-14T13:31:51.8941944Z #16 sha256:a79e3fcfbae8b7873f943cbe2adf1b8326be6a18027ae3c33b2fef254311d113 17.77MB / 17.77MB 5.5s done 2024-05-14T13:31:59.4588074Z #16 extracting sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 9.1s done 2024-05-14T13:31:59.4589355Z #16 DONE 13.3s 2024-05-14T13:31:59.6094362Z 2024-05-14T13:31:59.6094998Z #16 [builder 5/9] COPY content/rest ./content/rest 2024-05-14T13:32:01.0643004Z #16 extracting sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 2024-05-14T13:32:01.0644027Z #16 extracting sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 1.6s done 2024-05-14T13:32:01.0644710Z #16 DONE 14.9s 2024-05-14T13:32:01.2149521Z 2024-05-14T13:32:01.2150338Z #16 [builder 5/9] COPY content/rest ./content/rest 2024-05-14T13:32:01.2151140Z #16 extracting sha256:a79e3fcfbae8b7873f943cbe2adf1b8326be6a18027ae3c33b2fef254311d113 2024-05-14T13:32:01.9294632Z #16 extracting sha256:a79e3fcfbae8b7873f943cbe2adf1b8326be6a18027ae3c33b2fef254311d113 0.9s done 2024-05-14T13:32:01.9295570Z #16 DONE 15.8s 2024-05-14T13:32:02.1396309Z 2024-05-14T13:32:02.1397176Z #16 [builder 5/9] COPY content/rest ./content/rest 2024-05-14T13:32:02.1398302Z #16 extracting sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 done 2024-05-14T13:32:02.1399519Z #16 extracting sha256:d23c36d87ec37815552be9869fd35021ef609147f0ff36f4bcfaa00175b272cc done 2024-05-14T13:32:02.1400752Z #16 extracting sha256:b56bf523a3f1a046077496e84a68061cc4dc6ead1a3f5eeff6d1f7d12312405e 0.0s done 2024-05-14T13:32:02.1401633Z #16 DONE 15.9s 2024-05-14T13:32:02.1401876Z 2024-05-14T13:32:02.1402067Z #17 [builder 6/9] COPY data ./data 2024-05-14T13:32:05.5769557Z #17 DONE 3.6s 2024-05-14T13:32:05.7699681Z 2024-05-14T13:32:05.7700422Z #18 [builder 7/9] COPY next.config.js ./next.config.js 2024-05-14T13:32:05.7701333Z #18 DONE 0.0s 2024-05-14T13:32:05.7701698Z 2024-05-14T13:32:05.7702178Z #19 [builder 8/9] COPY tsconfig.json ./tsconfig.json 2024-05-14T13:32:05.7703114Z #19 DONE 0.0s 2024-05-14T13:32:05.7703473Z 2024-05-14T13:32:05.7703741Z #20 [builder 9/9] RUN npm run build 2024-05-14T13:32:05.9508439Z #20 0.331 2024-05-14T13:32:05.9509074Z #20 0.331 > build 2024-05-14T13:32:05.9509640Z #20 0.331 > next build 2024-05-14T13:32:05.9510219Z #20 0.331 2024-05-14T13:32:06.6433452Z #20 1.024 Attention: Next.js now collects completely anonymous telemetry regarding usage. 2024-05-14T13:32:06.8547161Z #20 1.024 This information is used to shape Next.js' roadmap and prioritize features. 2024-05-14T13:32:06.8549020Z #20 1.024 You can learn more, including how to opt-out if you'd not like to participate in this anonymous program, by visiting the following URL: 2024-05-14T13:32:06.8550051Z #20 1.024 https://nextjs.org/telemetry 2024-05-14T13:32:06.8550489Z #20 1.025 2024-05-14T13:32:06.8552969Z #20 1.083 β² Next.js 14.2.3 2024-05-14T13:32:06.8553556Z #20 1.083 - Experiments (use with caution): 2024-05-14T13:32:06.8554106Z #20 1.083 Β· scrollRestoration 2024-05-14T13:32:06.8554596Z #20 1.083 Β· largePageDataBytes 2024-05-14T13:32:06.8554998Z #20 1.084 2024-05-14T13:32:06.8555339Z #20 1.085 Skipping validation of types 2024-05-14T13:32:06.8555754Z #20 1.085 Skipping linting 2024-05-14T13:32:07.0384120Z #20 1.419 Creating an optimized production build ... 2024-05-14T13:32:29.2159400Z #20 23.60 β Compiled with warnings 2024-05-14T13:32:29.2160174Z #20 23.60 2024-05-14T13:32:29.2160848Z #20 23.60 ./src/github-apps/lib/index.js 2024-05-14T13:32:29.2162237Z #20 23.60 The generated code contains 'async/await' because this module is using "topLevelAwait". 2024-05-14T13:32:29.2164041Z #20 23.60 However, your target environment does not appear to support 'async/await'. 2024-05-14T13:32:29.2165468Z #20 23.60 As a result, the code may not run as expected or may cause runtime errors. 2024-05-14T13:32:29.2166487Z #20 23.60 2024-05-14T13:32:29.2167142Z #20 23.60 Import trace for requested module: 2024-05-14T13:32:29.2168077Z #20 23.60 ./src/github-apps/lib/index.js 2024-05-14T13:32:29.2169467Z #20 23.60 ./src/github-apps/pages/endpoints-available-for-fine-grained-personal-access-tokens.tsx 2024-05-14T13:32:29.2171153Z #20 23.60 2024-05-14T13:32:29.2171827Z #20 23.60 ./src/products/lib/all-products.js 2024-05-14T13:32:29.2173189Z #20 23.60 The generated code contains 'async/await' because this module is using "topLevelAwait". 2024-05-14T13:32:29.2174871Z #20 23.60 However, your target environment does not appear to support 'async/await'. 2024-05-14T13:32:29.2176319Z #20 23.60 As a result, the code may not run as expected or may cause runtime errors. 2024-05-14T13:32:29.2177346Z #20 23.60 2024-05-14T13:32:29.2177921Z #20 23.60 Import trace for requested module: 2024-05-14T13:32:29.2178869Z #20 23.60 ./src/products/lib/all-products.js 2024-05-14T13:32:29.2179732Z #20 23.60 ./src/frame/lib/path-utils.js 2024-05-14T13:32:29.2180747Z #20 23.60 ./src/content-render/unified/rewrite-local-links.js 2024-05-14T13:32:29.2181841Z #20 23.60 ./src/content-render/unified/processor.js 2024-05-14T13:32:29.2182816Z #20 23.60 ./src/content-render/unified/index.js 2024-05-14T13:32:29.2183719Z #20 23.60 ./src/content-render/index.js 2024-05-14T13:32:29.2184589Z #20 23.60 ./src/frame/lib/get-mini-toc-items.js 2024-05-14T13:32:29.2185493Z #20 23.60 ./src/graphql/pages/breaking-changes.tsx 2024-05-14T13:32:29.2186179Z #20 23.60 2024-05-14T13:32:29.2187014Z #20 23.60 ./src/products/lib/all-products.js 2024-05-14T13:32:29.2188326Z #20 23.60 The generated code contains 'async/await' because this module is using "topLevelAwait". 2024-05-14T13:32:29.2189871Z #20 23.60 However, your target environment does not appear to support 'async/await'. 2024-05-14T13:32:29.2191254Z #20 23.60 As a result, the code may not run as expected or may cause runtime errors. 2024-05-14T13:32:29.2192233Z #20 23.60 2024-05-14T13:32:29.2192810Z #20 23.60 Import trace for requested module: 2024-05-14T13:32:29.2193726Z #20 23.60 ./src/products/lib/all-products.js 2024-05-14T13:32:29.2194562Z #20 23.60 ./src/frame/lib/path-utils.js 2024-05-14T13:32:29.2195559Z #20 23.60 ./src/content-render/unified/rewrite-local-links.js 2024-05-14T13:32:29.2196641Z #20 23.60 ./src/content-render/unified/processor.js 2024-05-14T13:32:29.2197618Z #20 23.60 ./src/content-render/unified/index.js 2024-05-14T13:32:29.2198531Z #20 23.60 ./src/content-render/index.js 2024-05-14T13:32:29.2199419Z #20 23.60 ./src/frame/lib/get-mini-toc-items.js 2024-05-14T13:32:29.2200736Z #20 23.60 ./src/graphql/pages/breaking-changes.tsx 2024-05-14T13:32:29.2201559Z #20 23.60 2024-05-14T13:32:29.2202272Z #20 23.60 ./src/products/lib/all-products.js 2024-05-14T13:32:29.2203635Z #20 23.60 The generated code contains 'async/await' because this module is using "topLevelAwait". 2024-05-14T13:32:29.2205331Z #20 23.60 However, your target environment does not appear to support 'async/await'. 2024-05-14T13:32:29.2206694Z #20 23.60 As a result, the code may not run as expected or may cause runtime errors. 2024-05-14T13:32:29.2207697Z #20 23.60 2024-05-14T13:32:29.2208244Z #20 23.60 Import trace for requested module: 2024-05-14T13:32:29.2209185Z #20 23.60 ./src/products/lib/all-products.js 2024-05-14T13:32:29.2210069Z #20 23.60 ./src/frame/lib/path-utils.js 2024-05-14T13:32:29.2211059Z #20 23.60 ./src/content-render/unified/rewrite-local-links.js 2024-05-14T13:32:29.2212123Z #20 23.60 ./src/content-render/unified/processor.js 2024-05-14T13:32:29.2213543Z #20 23.60 ./src/content-render/unified/index.js 2024-05-14T13:32:29.2214501Z #20 23.60 ./src/content-render/index.js 2024-05-14T13:32:29.2215487Z #20 23.60 ./src/frame/lib/get-mini-toc-items.js 2024-05-14T13:32:29.2216450Z #20 23.60 ./src/graphql/pages/breaking-changes.tsx 2024-05-14T13:32:29.2217203Z #20 23.60 2024-05-14T13:32:29.2217961Z #20 23.60 ./src/versions/lib/enterprise-server-releases.js 2024-05-14T13:32:29.2219428Z #20 23.60 The generated code contains 'async/await' because this module is using "topLevelAwait". 2024-05-14T13:32:29.2220899Z #20 23.60 However, your target environment does not appear to support 'async/await'. 2024-05-14T13:32:29.2222192Z #20 23.60 As a result, the code may not run as expected or may cause runtime errors. 2024-05-14T13:32:29.2223421Z #20 23.60 2024-05-14T13:32:29.2224035Z #20 23.60 Import trace for requested module: 2024-05-14T13:32:29.2224961Z #20 23.60 ./src/versions/lib/enterprise-server-releases.js 2024-05-14T13:32:29.2225787Z #20 23.60 ./src/versions/lib/all-versions.js 2024-05-14T13:32:29.2226453Z #20 23.60 ./src/graphql/lib/index.js 2024-05-14T13:32:29.2227377Z #20 23.60 ./src/graphql/pages/breaking-changes.tsx 2024-05-14T13:32:29.3680638Z #20 23.60 2024-05-14T13:32:29.3681328Z #20 23.60 Collecting page data ... 2024-05-14T13:32:30.0400132Z #20 24.42 Warning: You have opted-out of Automatic Static Optimization due to `getInitialProps` in `pages/_app`. This does not opt-out pages with `getStaticProps` 2024-05-14T13:32:30.0402518Z #20 24.42 Read more: https://nextjs.org/docs/messages/opt-out-auto-static-optimization 2024-05-14T13:32:30.0403475Z #20 24.42 2024-05-14T13:32:30.2220616Z #20 24.45 Finalizing page optimization ... 2024-05-14T13:32:30.2221472Z #20 24.45 Collecting build traces ... 2024-05-14T13:32:43.6091269Z #20 37.99 2024-05-14T13:32:43.7664501Z #20 38.00 Route (pages) Size First Load JS 2024-05-14T13:32:43.7668093Z #20 38.00 β Ζ / 197 B 283 kB 2024-05-14T13:32:43.7669155Z #20 38.00 β /_app 0 B 127 kB 2024-05-14T13:32:43.7670184Z #20 38.00 β Ζ /_notfound 1.56 kB 223 kB 2024-05-14T13:32:43.7671236Z #20 38.00 β Ζ /[versionId] 270 B 283 kB 2024-05-14T13:32:43.7672405Z #20 38.00 β Ζ /[versionId]/[productId] 228 B 299 kB 2024-05-14T13:32:43.7674098Z #20 38.00 β Ζ /[versionId]/[productId]/[...restPage] 298 B 299 kB 2024-05-14T13:32:43.7675965Z #20 38.00 β Ζ /[versionId]/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise 334 B 280 kB 2024-05-14T13:32:43.7678579Z #20 38.00 β Ζ /[versionId]/admin/release-notes 24.1 kB 295 kB 2024-05-14T13:32:43.7680649Z #20 38.00 β β css/e591c09b57bedfdd.css 1.71 kB 2024-05-14T13:32:43.7682886Z #20 38.00 β Ζ /[versionId]/authentication/keeping-your-account-and-data-secure/security-log-events 324 B 280 kB 2024-05-14T13:32:43.7685291Z #20 38.00 β Ζ /[versionId]/graphql/overview/breaking-changes 9.03 kB 280 kB 2024-05-14T13:32:43.7687303Z #20 38.00 β Ζ /[versionId]/graphql/overview/changelog 8.91 kB 280 kB 2024-05-14T13:32:43.7689270Z #20 38.00 β Ζ /[versionId]/graphql/overview/explorer 5.12 kB 276 kB 2024-05-14T13:32:43.7690699Z #20 38.00 β Ζ /[versionId]/graphql/overview/schema-previews 9.02 kB 280 kB 2024-05-14T13:32:43.7691843Z #20 38.00 β Ζ /[versionId]/graphql/reference/[page] 10.5 kB 281 kB 2024-05-14T13:32:43.7692873Z #20 38.00 β β css/e293dcd9cfe4a58a.css 2.07 kB 2024-05-14T13:32:43.7694191Z #20 38.00 β Ζ /[versionId]/organizations/keeping-your-organization-secure/audit-log-events-for-your-organization 321 B 280 kB 2024-05-14T13:32:43.7695960Z #20 38.00 β Ζ /[versionId]/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/audit-log-events-for-your-organization 338 B 280 kB 2024-05-14T13:32:43.7697397Z #20 38.00 β Ζ /[versionId]/rest/[category] 3.27 kB 326 kB 2024-05-14T13:32:43.7698437Z #20 38.00 β β css/72cad94feee9e391.css 2.37 kB 2024-05-14T13:32:43.7699492Z #20 38.00 β Ζ /[versionId]/rest/[category]/[subcategory] 1.34 kB 321 kB 2024-05-14T13:32:43.7700525Z #20 38.00 β β css/211d7ce7dcaeeea5.css 2.05 kB 2024-05-14T13:32:43.7701552Z #20 38.00 β Ζ /[versionId]/rest/about-the-rest-api 299 B 299 kB 2024-05-14T13:32:43.7702684Z #20 38.00 β Ζ /[versionId]/rest/about-the-rest-api/[...restPage] 302 B 299 kB 2024-05-14T13:32:43.7703889Z #20 38.00 β Ζ /[versionId]/rest/authentication 296 B 299 kB 2024-05-14T13:32:43.7704982Z #20 38.00 β Ζ /[versionId]/rest/authentication/[...restPage] 304 B 299 kB 2024-05-14T13:32:43.7706366Z #20 38.00 β Ζ /[versionId]/rest/authentication/endpoints-available-for-fine-grained-personal-access-tokens 455 B 280 kB 2024-05-14T13:32:43.7708542Z #20 38.00 β Ζ /[versionId]/rest/authentication/endpoints-available-for-github-app-installation-access-tokens 456 B 280 kB 2024-05-14T13:32:43.7710189Z #20 38.00 β Ζ /[versionId]/rest/authentication/endpoints-available-for-github-app-user-access-tokens 452 B 280 kB 2024-05-14T13:32:43.7711810Z #20 38.00 β Ζ /[versionId]/rest/authentication/permissions-required-for-fine-grained-personal-access-tokens 479 B 281 kB 2024-05-14T13:32:43.7713323Z #20 38.00 β Ζ /[versionId]/rest/authentication/permissions-required-for-github-apps 473 B 281 kB 2024-05-14T13:32:43.7714489Z #20 38.00 β Ζ /[versionId]/rest/guides 292 B 299 kB 2024-05-14T13:32:43.7715488Z #20 38.00 β Ζ /[versionId]/rest/guides/[...restPage] 299 B 299 kB 2024-05-14T13:32:43.7716703Z #20 38.00 β Ζ /[versionId]/rest/quickstart 295 B 299 kB 2024-05-14T13:32:43.7717738Z #20 38.00 β Ζ /[versionId]/rest/using-the-rest-api 299 B 299 kB 2024-05-14T13:32:43.7718861Z #20 38.00 β Ζ /[versionId]/rest/using-the-rest-api/[...restPage] 307 B 299 kB 2024-05-14T13:32:43.7719890Z #20 38.00 β Ζ /[versionId]/search 279 B 275 kB 2024-05-14T13:32:43.7720939Z #20 38.00 β Ζ /[versionId]/webhooks/webhook-events-and-payloads 14.6 kB 288 kB 2024-05-14T13:32:43.7722029Z #20 38.00 β β css/e9064d0bd5380a77.css 2.27 kB 2024-05-14T13:32:43.7722938Z #20 38.00 β Ζ /404 1.52 kB 223 kB 2024-05-14T13:32:43.7723769Z #20 38.00 β Ζ /search 199 B 275 kB 2024-05-14T13:32:43.7724575Z #20 38.00 + First Load JS shared by all 195 kB 2024-05-14T13:32:43.7725623Z #20 38.00 β chunks/framework-0e8d27528ba61906.js 45.2 kB 2024-05-14T13:32:43.7726830Z #20 38.00 β chunks/main-068991b6b5ba8629.js 37.7 kB 2024-05-14T13:32:43.7727894Z #20 38.00 β chunks/pages/_app-2b5370286615c3d2.js 42 kB 2024-05-14T13:32:43.7728898Z #20 38.00 β css/80199a91ae93c8b4.css 67.9 kB 2024-05-14T13:32:43.7729869Z #20 38.00 β other shared chunks (total) 2.42 kB 2024-05-14T13:32:43.7730481Z #20 38.00 2024-05-14T13:32:43.7730881Z #20 38.00 Ζ (Dynamic) server-rendered on demand 2024-05-14T13:32:43.7731313Z #20 38.00 2024-05-14T13:32:43.8236823Z #20 DONE 38.2s 2024-05-14T13:32:44.8345362Z 2024-05-14T13:32:44.8346283Z #21 [prod_deps 1/1] RUN npm prune --production 2024-05-14T13:32:44.8347293Z #21 CACHED 2024-05-14T13:32:44.8347599Z 2024-05-14T13:32:44.8348676Z #22 [preview 1/11] COPY --chown=node:node --from=prod_deps /home/node/app/node_modules /home/node/app/node_modules 2024-05-14T13:32:45.0016474Z #22 ... 2024-05-14T13:32:45.0016814Z 2024-05-14T13:32:45.0017212Z #23 [auth] github/docs:pull token for *** 2024-05-14T13:32:45.0017767Z #23 DONE 0.0s 2024-05-14T13:32:45.0018028Z 2024-05-14T13:32:45.0018873Z #22 [preview 1/11] COPY --chown=node:node --from=prod_deps /home/node/app/node_modules /home/node/app/node_modules 2024-05-14T13:32:45.0020207Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 0B / 165.21MB 0.2s 2024-05-14T13:32:45.3019250Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 16.78MB / 165.21MB 0.5s 2024-05-14T13:32:45.4516917Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 29.36MB / 165.21MB 0.6s 2024-05-14T13:32:45.6020876Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 40.89MB / 165.21MB 0.8s 2024-05-14T13:32:45.7512430Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 53.48MB / 165.21MB 0.9s 2024-05-14T13:32:45.9016056Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 65.01MB / 165.21MB 1.1s 2024-05-14T13:32:46.0519375Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 77.59MB / 165.21MB 1.2s 2024-05-14T13:32:46.2014484Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 88.08MB / 165.21MB 1.4s 2024-05-14T13:32:46.3534789Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 99.61MB / 165.21MB 1.5s 2024-05-14T13:32:46.5011865Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 111.15MB / 165.21MB 1.7s 2024-05-14T13:32:46.6520476Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 121.63MB / 165.21MB 1.8s 2024-05-14T13:32:46.8012332Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 132.12MB / 165.21MB 2.0s 2024-05-14T13:32:46.9512474Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 144.70MB / 165.21MB 2.1s 2024-05-14T13:32:47.1020121Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 155.19MB / 165.21MB 2.3s 2024-05-14T13:32:47.2517265Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 165.21MB / 165.21MB 2.4s 2024-05-14T13:32:47.3639688Z #22 sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 165.21MB / 165.21MB 2.5s done 2024-05-14T13:32:47.3641096Z #22 DONE 2.5s 2024-05-14T13:32:47.5159396Z 2024-05-14T13:32:47.5163284Z #22 [preview 1/11] COPY --chown=node:node --from=prod_deps /home/node/app/node_modules /home/node/app/node_modules 2024-05-14T13:32:47.5166873Z #22 extracting sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 2024-05-14T13:32:53.1109079Z #22 extracting sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 5.7s done 2024-05-14T13:32:53.1110972Z #22 DONE 8.3s 2024-05-14T13:32:53.2621258Z 2024-05-14T13:32:53.2623069Z #24 [preview 2/11] COPY --chown=node:node --from=builder /home/node/app/.next /home/node/app/.next 2024-05-14T13:32:55.1551361Z #24 DONE 2.0s 2024-05-14T13:32:55.3262213Z 2024-05-14T13:32:55.3263426Z #25 [preview 3/11] COPY --chown=node:node package.json ./ 2024-05-14T13:32:55.3264703Z #25 DONE 0.0s 2024-05-14T13:32:55.3264980Z 2024-05-14T13:32:55.3265375Z #26 [preview 4/11] COPY --chown=node:node assets ./assets 2024-05-14T13:32:55.6081901Z #26 DONE 0.4s 2024-05-14T13:32:55.7594032Z 2024-05-14T13:32:55.7595762Z #27 [preview 5/11] COPY --chown=node:node content ./content 2024-05-14T13:32:56.0172870Z #27 DONE 0.4s 2024-05-14T13:32:56.1686136Z 2024-05-14T13:32:56.1687294Z #28 [preview 6/11] COPY --chown=node:node src ./src 2024-05-14T13:32:56.7762757Z #28 DONE 0.8s 2024-05-14T13:32:56.9339736Z 2024-05-14T13:32:56.9341042Z #29 [preview 7/11] COPY --chown=node:node .remotejson-cache* ./.remotejson-cache 2024-05-14T13:32:56.9343405Z #29 DONE 0.1s 2024-05-14T13:32:56.9343927Z 2024-05-14T13:32:56.9345006Z #30 [preview 8/11] COPY --chown=node:node .pageinfo-cache.json.br* ./.pageinfo-cache.json.br 2024-05-14T13:32:56.9346575Z #30 DONE 0.1s 2024-05-14T13:32:57.0857435Z 2024-05-14T13:32:57.0858890Z #31 [preview 9/11] COPY --chown=node:node data ./data 2024-05-14T13:32:57.4350276Z #31 DONE 0.5s 2024-05-14T13:32:57.6386129Z 2024-05-14T13:32:57.6387574Z #32 [preview 10/11] COPY --chown=node:node next.config.js ./ 2024-05-14T13:32:57.6388632Z #32 DONE 0.0s 2024-05-14T13:32:57.6389300Z 2024-05-14T13:32:57.6389877Z #33 [preview 11/11] COPY --chown=node:node tsconfig.json ./ 2024-05-14T13:32:57.6390849Z #33 DONE 0.0s 2024-05-14T13:32:57.6391696Z 2024-05-14T13:32:57.6391994Z #34 exporting to image 2024-05-14T13:32:57.6392728Z #34 exporting layers 2024-05-14T13:33:01.4550818Z #34 exporting layers 4.0s done 2024-05-14T13:33:01.6583658Z #34 ... 2024-05-14T13:33:01.6584045Z 2024-05-14T13:33:01.6584478Z #35 [auth] github/docs:pull,push token for *** 2024-05-14T13:33:01.6585261Z #35 DONE 0.0s 2024-05-14T13:33:01.6585509Z 2024-05-14T13:33:01.6585697Z #34 exporting to image 2024-05-14T13:33:01.6586547Z #34 exporting manifest sha256:587b3add06e5ef159b70d2758727aeb2c1de15289e093bec75e2b6ffe83e6d19 done 2024-05-14T13:33:01.6588064Z #34 exporting config sha256:c8122c2780873efa111971d54408e8053b7c0b40d3da4edf6664724fbfd47d70 done 2024-05-14T13:33:01.6589325Z #34 exporting attestation manifest sha256:71acfe95e0d9924e37fb0f89c0ff95b95f3ed54b9e6425cc014122f8b26c5131 done 2024-05-14T13:33:01.6590488Z #34 exporting manifest list sha256:868850acb30bcff8b400c59e825378e440dd3f08677d2ea3c12be63b81b13d83 done 2024-05-14T13:33:01.6591340Z #34 pushing layers 2024-05-14T13:33:06.9320788Z #34 pushing layers 5.4s done 2024-05-14T13:33:06.9322545Z #34 pushing manifest for ***/github/docs:main-preview@sha256:868850acb30bcff8b400c59e825378e440dd3f08677d2ea3c12be63b81b13d83 2024-05-14T13:33:07.9532142Z #34 pushing manifest for ***/github/docs:main-preview@sha256:868850acb30bcff8b400c59e825378e440dd3f08677d2ea3c12be63b81b13d83 1.0s done 2024-05-14T13:33:07.9534440Z #34 DONE 10.5s 2024-05-14T13:33:07.9534914Z 2024-05-14T13:33:07.9535241Z #36 exporting cache to registry 2024-05-14T13:33:07.9536011Z #36 preparing build cache for export 2024-05-14T13:33:11.2821065Z #36 writing layer sha256:1341e7a39a5ac4d45a806ad6d7617888c0a7ab86e0bb65e8833858bb06c61a40 2024-05-14T13:33:11.5269510Z #36 writing layer sha256:1341e7a39a5ac4d45a806ad6d7617888c0a7ab86e0bb65e8833858bb06c61a40 0.1s done 2024-05-14T13:33:11.5271308Z #36 writing layer sha256:2401021f24a96ba373dc154acd7eb9923253fb5c0ef0baea91500532a8665b3d 2024-05-14T13:33:16.4523621Z #36 writing layer sha256:2401021f24a96ba373dc154acd7eb9923253fb5c0ef0baea91500532a8665b3d 5.1s done 2024-05-14T13:33:16.4524896Z #36 writing layer sha256:2bde47b9f7c35f14f2e93c485556b9c368305fa0c78e364b4c28942bd0721433 2024-05-14T13:33:16.5859289Z #36 writing layer sha256:2bde47b9f7c35f14f2e93c485556b9c368305fa0c78e364b4c28942bd0721433 0.0s done 2024-05-14T13:33:16.5861675Z #36 writing layer sha256:38674095d34e9c60bd88849fb8dcb142df512bd5659241c9eb6493ecaf38d61c 0.1s done 2024-05-14T13:33:16.5863085Z #36 writing layer sha256:3bce96456554715f6c03922c7378bb770bf188b10c3f15f2cf35ea96268e7905 0.0s done 2024-05-14T13:33:16.5864198Z #36 writing layer sha256:3cdfadb48585ce5f4e1f56744e77db726a0fa5fa97dc319c46e82935dca040c3 2024-05-14T13:33:16.7035767Z #36 writing layer sha256:3cdfadb48585ce5f4e1f56744e77db726a0fa5fa97dc319c46e82935dca040c3 0.1s done 2024-05-14T13:33:16.7038316Z #36 writing layer sha256:4abcf20661432fb2d719aaf90656f55c287f8ca915dc1c92ec14ff61e67fbaf8 0.0s done 2024-05-14T13:33:16.7039822Z #36 writing layer sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 done 2024-05-14T13:33:16.7040888Z #36 writing layer sha256:549d5829d8f4c8a2e43e83b31bedbf9d61f7132db0ef811dedb6c130e645a456 2024-05-14T13:33:17.0035320Z #36 writing layer sha256:549d5829d8f4c8a2e43e83b31bedbf9d61f7132db0ef811dedb6c130e645a456 0.3s done 2024-05-14T13:33:17.0036720Z #36 writing layer sha256:580c5ab2ec58ea58569f57ce27b52ba80d8ee98ad5668a2675cd1b0417012bc7 2024-05-14T13:33:17.2839539Z #36 writing layer sha256:580c5ab2ec58ea58569f57ce27b52ba80d8ee98ad5668a2675cd1b0417012bc7 0.3s done 2024-05-14T13:33:17.2841073Z #36 writing layer sha256:5dd2832df46aef184871b689fcaeefc7da7320c96c00850e453932e83c37bddc 2024-05-14T13:33:17.3963962Z #36 writing layer sha256:5dd2832df46aef184871b689fcaeefc7da7320c96c00850e453932e83c37bddc 0.1s done 2024-05-14T13:33:17.3966147Z #36 writing layer sha256:6833cfdabd791a4b3a101975c01f0b8b61ba1f9eae054819bd97bee30f8f4ee0 0.1s done 2024-05-14T13:33:17.3967765Z #36 writing layer sha256:6ed45cc87094e8e5c58b3487864dc048046811802d55ed5173ae85e3476b2a07 2024-05-14T13:33:17.6307118Z #36 writing layer sha256:6ed45cc87094e8e5c58b3487864dc048046811802d55ed5173ae85e3476b2a07 0.0s done 2024-05-14T13:33:17.6308612Z #36 writing layer sha256:731d6a3004448826e7c5ecba1768c75eba6fd0d73c58562969795030e92ea796 0.1s done 2024-05-14T13:33:17.6309862Z #36 writing layer sha256:73f0aa89b90b1b8a9d5a17a8d7bd2308a1a424f59abfbc1d3a81e9bbd6539f37 2024-05-14T13:33:17.8982437Z #36 writing layer sha256:73f0aa89b90b1b8a9d5a17a8d7bd2308a1a424f59abfbc1d3a81e9bbd6539f37 0.4s done 2024-05-14T13:33:17.8983721Z #36 writing layer sha256:76bb38679d15fd342a9f6c46aea260d7b627bb02586634f57d404c00fd94b822 2024-05-14T13:33:18.7138688Z #36 writing layer sha256:76bb38679d15fd342a9f6c46aea260d7b627bb02586634f57d404c00fd94b822 0.8s done 2024-05-14T13:33:18.7140832Z #36 writing layer sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 2024-05-14T13:33:18.8525212Z #36 writing layer sha256:78ec268c55d46b4ba665b4e963cafafe815ab2c929c3f0084156e58812f1684e 0.0s done 2024-05-14T13:33:18.8527169Z #36 writing layer sha256:9c1549555bbe8de4a44ac549a9aa011b53c8f0e9230f57254cff1e23f6a9237a 0.0s done 2024-05-14T13:33:18.8528723Z #36 writing layer sha256:a79e3fcfbae8b7873f943cbe2adf1b8326be6a18027ae3c33b2fef254311d113 0.1s done 2024-05-14T13:33:18.8530052Z #36 writing layer sha256:b56bf523a3f1a046077496e84a68061cc4dc6ead1a3f5eeff6d1f7d12312405e 2024-05-14T13:33:18.9781564Z #36 writing layer sha256:b56bf523a3f1a046077496e84a68061cc4dc6ead1a3f5eeff6d1f7d12312405e 0.1s done 2024-05-14T13:33:18.9783469Z #36 writing layer sha256:bd6b2651662d3108a7401bb250d844ae212341cc17ad39528e7315f25fd301b3 0.1s done 2024-05-14T13:33:18.9784627Z #36 writing layer sha256:c131742d77e7158d5b5665efc10cf10b53680e0cbf76136cb77dae82ec31df59 2024-05-14T13:33:19.1036173Z #36 writing layer sha256:c131742d77e7158d5b5665efc10cf10b53680e0cbf76136cb77dae82ec31df59 0.1s done 2024-05-14T13:33:19.1037814Z #36 writing layer sha256:c2687f162e770685282253f0b5299b62f075e7f1d4c8569e65d5b89f00e49bdb 0.1s done 2024-05-14T13:33:19.1039395Z #36 writing layer sha256:d23c36d87ec37815552be9869fd35021ef609147f0ff36f4bcfaa00175b272cc 2024-05-14T13:33:19.2690552Z #36 writing layer sha256:d23c36d87ec37815552be9869fd35021ef609147f0ff36f4bcfaa00175b272cc 0.1s done 2024-05-14T13:33:19.2692671Z #36 writing layer sha256:db3e2f2b60543c32c84a427cc2129966358695d5b298456169c12df7ee2fd1e0 0.0s done 2024-05-14T13:33:19.2694506Z #36 writing layer sha256:f0afdfa9da1b5b727223e45968427b9c447eacd72163eb1c5e8fc11c4cce1797 0.1s done 2024-05-14T13:33:19.2695891Z #36 writing config sha256:9a16485d1b94f0b35c8339fd75fb7a4340d752a68d16c47d3a2355a0298b58ba 2024-05-14T13:33:19.5431441Z #36 writing config sha256:9a16485d1b94f0b35c8339fd75fb7a4340d752a68d16c47d3a2355a0298b58ba 0.3s done 2024-05-14T13:33:19.6938013Z #36 writing cache manifest sha256:0c043ddcf3e71c1f4255fc8f9dad4e3c294a6c54a3ecaca2aeca38f96d8ca239 2024-05-14T13:33:20.2618420Z #36 preparing build cache for export 12.3s done 2024-05-14T13:33:20.2619859Z #36 writing cache manifest sha256:0c043ddcf3e71c1f4255fc8f9dad4e3c294a6c54a3ecaca2aeca38f96d8ca239 0.7s done 2024-05-14T13:33:20.2621158Z #36 DONE 12.3s 2024-05-14T13:33:20.3112587Z 2024-05-14T13:33:20.3113615Z #37 resolving provenance for metadata file 2024-05-14T13:33:20.3114361Z #37 DONE 0.0s 2024-05-14T13:33:20.3190617Z ##[group]ImageID 2024-05-14T13:33:20.3191745Z sha256:868850acb30bcff8b400c59e825378e440dd3f08677d2ea3c12be63b81b13d83 2024-05-14T13:33:20.3193814Z ##[endgroup] 2024-05-14T13:33:20.3195266Z ##[group]Digest 2024-05-14T13:33:20.3196377Z sha256:868850acb30bcff8b400c59e825378e440dd3f08677d2ea3c12be63b81b13d83 2024-05-14T13:33:20.3198214Z ##[endgroup] 2024-05-14T13:33:20.3199436Z ##[group]Metadata 2024-05-14T13:33:20.3200129Z *** 2024-05-14T13:33:20.3200932Z "buildx.build.provenance": *** 2024-05-14T13:33:20.3201947Z "buildType": "https://mobyproject.org/buildkit@v1", 2024-05-14T13:33:20.3203006Z "materials": [ 2024-05-14T13:33:20.3203652Z *** 2024-05-14T13:33:20.3205634Z "uri": "pkg:docker/node@20-alpine?digest=sha256:7a91aa397f2e2dfbfcdad2e2d72599f374e0b0172be1d86eeb73f1d33f36a4b2\u0026platform=linux%2Famd64", 2024-05-14T13:33:20.3207567Z "digest": *** 2024-05-14T13:33:20.3208669Z "sha256": "7a91aa397f2e2dfbfcdad2e2d72599f374e0b0172be1d86eeb73f1d33f36a4b2" 2024-05-14T13:33:20.3209816Z *** 2024-05-14T13:33:20.3210541Z *** 2024-05-14T13:33:20.3211152Z ], 2024-05-14T13:33:20.3212086Z "invocation": *** 2024-05-14T13:33:20.3212804Z "configSource": ***, 2024-05-14T13:33:20.3213652Z "parameters": *** 2024-05-14T13:33:20.3214483Z "frontend": "dockerfile.v0", 2024-05-14T13:33:20.3215425Z "args": *** 2024-05-14T13:33:20.3216129Z "target": "preview" 2024-05-14T13:33:20.3216916Z ***, 2024-05-14T13:33:20.3217552Z "locals": [ 2024-05-14T13:33:20.3218253Z *** 2024-05-14T13:33:20.3218855Z "name": "context" 2024-05-14T13:33:20.3219668Z ***, 2024-05-14T13:33:20.3220312Z *** 2024-05-14T13:33:20.3221072Z "name": "dockerfile" 2024-05-14T13:33:20.3222122Z *** 2024-05-14T13:33:20.3222730Z ] 2024-05-14T13:33:20.3223406Z ***, 2024-05-14T13:33:20.3224187Z "environment": *** 2024-05-14T13:33:20.3224955Z "platform": "linux/amd64" 2024-05-14T13:33:20.3225575Z *** 2024-05-14T13:33:20.3226035Z *** 2024-05-14T13:33:20.3227052Z ***, 2024-05-14T13:33:20.3228783Z "buildx.build.ref": "builder-9b11fb52-4219-4c01-bb84-a866433e28e9/builder-9b11fb52-4219-4c01-bb84-a866433e28e90/y0tk5psubu0w9au43d3u8z29m", 2024-05-14T13:33:20.3231699Z "cache.manifest": "***\"mediaType\":\"application/vnd.oci.image.index.v1+json\",\"digest\":\"sha256:0c043ddcf3e71c1f4255fc8f9dad4e3c294a6c54a3ecaca2aeca38f96d8ca239\",\"size\":9874***", 2024-05-14T13:33:20.3233687Z "containerimage.descriptor": *** 2024-05-14T13:33:20.3234611Z "mediaType": "application/vnd.oci.image.index.v1+json", 2024-05-14T13:33:20.3235452Z "digest": "sha256:868850acb30bcff8b400c59e825378e440dd3f08677d2ea3c12be63b81b13d83", 2024-05-14T13:33:20.3236271Z "size": 856 2024-05-14T13:33:20.3236715Z ***, 2024-05-14T13:33:20.3237379Z "containerimage.digest": "sha256:868850acb30bcff8b400c59e825378e440dd3f08677d2ea3c12be63b81b13d83", 2024-05-14T13:33:20.3238457Z "image.name": "***/github/docs:main-preview" 2024-05-14T13:33:20.3239027Z *** 2024-05-14T13:33:20.3240075Z ##[endgroup] 2024-05-14T13:33:20.3345536Z Post job cleanup. 2024-05-14T13:33:20.4669315Z ##[group]Removing temp folder /tmp/docker-actions-toolkit-lQFbTS 2024-05-14T13:33:20.4690525Z ##[endgroup] 2024-05-14T13:33:20.4819087Z Post job cleanup. 2024-05-14T13:33:20.5538374Z [command]/usr/bin/git version 2024-05-14T13:33:20.5578238Z git version 2.43.2 2024-05-14T13:33:20.5619474Z Temporarily overriding HOME='/home/runner/work/_temp/73e9dc9a-3229-4684-a580-4dc5e8fb848e' before making global git config changes 2024-05-14T13:33:20.5621463Z Adding repository directory to the temporary git global config as a safe directory 2024-05-14T13:33:20.5623993Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/docs/docs/docs-early-access 2024-05-14T13:33:20.5657462Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-05-14T13:33:20.5688652Z [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-14T13:33:20.5924430Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-05-14T13:33:20.5943705Z http.https://github.com/.extraheader 2024-05-14T13:33:20.5956286Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2024-05-14T13:33:20.5984747Z [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-14T13:33:20.6372953Z Post job cleanup. 2024-05-14T13:33:20.7110825Z [command]/usr/bin/git version 2024-05-14T13:33:20.7152295Z git version 2.43.2 2024-05-14T13:33:20.7198176Z Temporarily overriding HOME='/home/runner/work/_temp/dfcfa0a6-b7c7-4add-be55-fbf88d81986c' before making global git config changes 2024-05-14T13:33:20.7201529Z Adding repository directory to the temporary git global config as a safe directory 2024-05-14T13:33:20.7203400Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/docs/docs 2024-05-14T13:33:20.7236658Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-05-14T13:33:20.7268643Z [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-14T13:33:20.7527846Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-05-14T13:33:20.7558667Z [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-14T13:33:20.7960262Z Post job cleanup. 2024-05-14T13:33:20.9254135Z ##[group]Removing builder 2024-05-14T13:33:21.0418868Z [command]/usr/bin/docker buildx rm builder-9b11fb52-4219-4c01-bb84-a866433e28e9 2024-05-14T13:33:24.8482478Z builder-9b11fb52-4219-4c01-bb84-a866433e28e9 removed 2024-05-14T13:33:24.8515112Z ##[endgroup] 2024-05-14T13:33:24.8516335Z ##[group]Cleaning up certificates 2024-05-14T13:33:24.8522904Z ##[endgroup] 2024-05-14T13:33:24.8663544Z Post job cleanup. 2024-05-14T13:33:24.9236189Z Clearing azure cli accounts from the local cache. 2024-05-14T13:33:24.9249551Z [command]/usr/bin/az account clear 2024-05-14T13:33:25.3369505Z Cleaning up orphan processes 2024-05-14T13:33:25.3964472Z Terminate orphan process: pid (3539) (python3) |