File tree Expand file tree Collapse file tree
build-push-docker-manifest
cicd-build-publish-artifacts-go
ctf-setup-run-tests-environment Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ " cicd-build-publish-artifacts-go " : minor
3+ " ctf-setup-run-tests-environment " : minor
4+ " build-push-docker-manifest " : minor
5+ " chip-schema-registration " : minor
6+ " crib-deploy-environment " : minor
7+ " pull-private-ecr-image " : minor
8+ " ci-beholder-validator " : minor
9+ " k8s-tailscale-connect " : minor
10+ " docker-image-patch " : minor
11+ " build-push-docker " : minor
12+ " promote-image-ecr " : minor
13+ " ecr-image-exists " : minor
14+ ---
15+
16+ chore: bump some action dependencies to node24 version
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ runs:
178178
179179 - name : Login to ECR
180180 id : login-ecr
181- uses : aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
181+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
182182 with :
183183 registry-type : >-
184184 ${{
Original file line number Diff line number Diff line change @@ -203,14 +203,14 @@ runs:
203203
204204 - name : Login to private ECR registries for base images
205205 if : ${{ steps.dockerfile-ecr-parse.outputs.needs-ecr-login == 'true' }}
206- uses : aws-actions/amazon-ecr-login@183a1442edf41672e66566b7fc560e297a290896 # v2.1.1
206+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
207207 with :
208208 registries : ${{ steps.dockerfile-ecr-parse.outputs.ecr-registries }}
209209
210210 - name : Login to ECR for publishing
211211 if : ${{ inputs.docker-push == 'true' }}
212212 id : login-ecr
213- uses : aws-actions/amazon-ecr-login@183a1442edf41672e66566b7fc560e297a290896 # v2.1.1
213+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
214214 with :
215215 registry-type : >-
216216 ${{
Original file line number Diff line number Diff line change 4747 - uses : actions/checkout@v6
4848
4949 - name : Login to ECR
50- uses : aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
50+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
5151 with :
5252 registries : ${{ inputs.aws-account-id }}
5353
6161 docker tag $AWS_ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/atlas-chip-cli:qa-latest chip-cli
6262
6363 - name : Connect to Tailscale
64- uses : tailscale/github-action@84a3f23bb4d843bcf4da6cf824ec1be473daf4de
64+ uses : tailscale/github-action@306e68a486fd2350f2bfc3b19fcd143891a4a2d8 # v4.1.2
6565 with :
6666 oauth-client-id : ${{ inputs.ts-ouath-client-id }}
6767 oauth-secret : ${{ inputs.ts-ouath-secret }}
Original file line number Diff line number Diff line change 7171
7272 - name : Login to aws ecr
7373 id : login-ecr
74- uses : aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
74+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
7575 with :
7676 registries : ${{ inputs.aws-account-number }}
7777
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ runs:
174174
175175 - name : Login to aws ecr
176176 if : inputs.publish == 'true' && inputs.docker-registry == 'aws'
177- uses : aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
177+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
178178 with :
179179 registries : ${{ steps.process-params.outputs.aws-account-number }}
180180
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ runs:
232232 cli: './cli/**'
233233
234234 - name : Login to AWS ECR for Helm
235- uses : aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
235+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
236236 env :
237237 AWS_REGION : ${{ inputs.aws-region }}
238238 with :
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ runs:
220220 - name : Login to Amazon ECR
221221 if : inputs.aws_registries && inputs.QA_AWS_REGION
222222 id : login-ecr
223- uses : aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
223+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
224224 with :
225225 registries : ${{ inputs.aws_registries }}
226226 env :
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ runs:
138138
139139 - name : Login to ECR for source image
140140 id : login-ecr-src
141- uses : aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
141+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
142142 env :
143143 AWS_REGION : ${{ steps.set-outputs.outputs.registry-src-type == 'public' && 'us-east-1' || inputs.aws-region }}
144144 with :
@@ -175,7 +175,7 @@ runs:
175175
176176 - name : Login to ECR for destination image
177177 id : login-ecr-dst
178- uses : aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
178+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
179179 env :
180180 AWS_REGION : ${{ inputs.aws-region }}
181181 with :
Original file line number Diff line number Diff line change 4242
4343 - name : Login to Amazon ECR
4444 id : login-ecr
45- uses : aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1
45+ uses : aws-actions/amazon-ecr-login@f2e9fc6c2b355c1890b65e6f6f0e2ac3e6e22f78 # v2.1.2
4646 with :
4747 mask-password : " true"
4848
You can’t perform that action at this time.
0 commit comments