@@ -66,41 +66,41 @@ runs:
66
66
cd aws-distro-opentelemetry-node-autoinstrumentation
67
67
npm pack
68
68
69
- - name : Set up QEMU
70
- uses : docker/setup-qemu-action@v3
69
+ # - name: Set up QEMU
70
+ # uses: docker/setup-qemu-action@v3
71
71
72
- - name : Set up Docker Buildx
73
- uses : docker/setup-buildx-action@v3
72
+ # - name: Set up Docker Buildx
73
+ # uses: docker/setup-buildx-action@v3
74
74
75
- - name : Login to private AWS ECR
76
- if : ${{ inputs.push_image == true || inputs.push_image == 'true' }}
77
- uses : docker/login-action@v3
78
- with :
79
- registry : ${{ inputs.image_registry }}
80
- env :
81
- AWS_REGION : ${{ inputs.aws-region }}
75
+ # - name: Login to private AWS ECR
76
+ # if: ${{ inputs.push_image == true || inputs.push_image == 'true' }}
77
+ # uses: docker/login-action@v3
78
+ # with:
79
+ # registry: ${{ inputs.image_registry }}
80
+ # env:
81
+ # AWS_REGION: ${{ inputs.aws-region }}
82
82
83
83
# Per https://docs.aws.amazon.com/AmazonECR/latest/public/docker-pull-ecr-image.html, it is possible to
84
84
# make unauthorized calls to get public ECR images (needed to build the ADOT Node docker image), but
85
85
# it can fail if you previously authenticated to a public repo. Adding this step to log out, so we
86
86
# ensure we can make unauthenticated call. This is important for making the pr_build workflow run on
87
87
# PRs created from forked repos.
88
- - name : Logout of public AWS ECR
89
- shell : bash
90
- run : docker logout public.ecr.aws
88
+ # - name: Logout of public AWS ECR
89
+ # shell: bash
90
+ # run: docker logout public.ecr.aws
91
91
92
- - name : Build and push image according to input
93
- uses : docker/build-push-action@v5
94
- with :
95
- push : ${{ inputs.push_image }}
96
- context : .
97
- file : ./Dockerfile
98
- platforms : linux/amd64
99
- tags : ${{ inputs.image_uri_with_tag }}
100
- load : ${{ inputs.load_image }}
92
+ # - name: Build and push image according to input
93
+ # uses: docker/build-push-action@v5
94
+ # with:
95
+ # push: ${{ inputs.push_image }}
96
+ # context: .
97
+ # file: ./Dockerfile
98
+ # platforms: linux/amd64
99
+ # tags: ${{ inputs.image_uri_with_tag }}
100
+ # load: ${{ inputs.load_image }}
101
101
102
- - name : Perform image scan
103
- uses : ./.github/actions/image_scan
104
- with :
105
- image-ref : ${{ inputs.image_uri_with_tag }}
106
- severity : ' CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN'
102
+ # - name: Perform image scan
103
+ # uses: ./.github/actions/image_scan
104
+ # with:
105
+ # image-ref: ${{ inputs.image_uri_with_tag }}
106
+ # severity: 'CRITICAL,HIGH,MEDIUM,LOW,UNKNOWN'
0 commit comments