From 2167adf10c3888154ab2214b6f21b0e0ccd45e39 Mon Sep 17 00:00:00 2001 From: Joaquin Villagomez Date: Tue, 10 Dec 2024 10:42:43 -0500 Subject: [PATCH 1/3] orb changes --- VERSION | 2 +- src/jobs/test.yml | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/VERSION b/VERSION index ebf14b4..63a1a1c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.8 +2.1.9 diff --git a/src/jobs/test.yml b/src/jobs/test.yml index 0d38776..d723630 100644 --- a/src/jobs/test.yml +++ b/src/jobs/test.yml @@ -35,12 +35,7 @@ parameters: https://circleci.com/docs/2.0/configuration-reference/#docker-executor docker_image: - type: enum - enum: [ - "cimg/node@sha256:9e7dff70aee20446a146e374367c3fddc58df1e39cca318dbd4993e625892880", - "cimg/node:16.18.1", - "cimg/base:2022.12" - ] + type: string default: "cimg/node@sha256:9e7dff70aee20446a146e374367c3fddc58df1e39cca318dbd4993e625892880" description: | The docker image to use for the tests. From 4e3e315e8194098881974f80b3359d9d9eec5a15 Mon Sep 17 00:00:00 2001 From: Christopher Wagner <70287489+Cwagne17@users.noreply.github.com> Date: Thu, 12 Dec 2024 11:20:46 -0500 Subject: [PATCH 2/3] Remove enum from ECS job also --- src/jobs/ecs.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/jobs/ecs.yml b/src/jobs/ecs.yml index 8a8b002..3790ca0 100644 --- a/src/jobs/ecs.yml +++ b/src/jobs/ecs.yml @@ -11,8 +11,7 @@ parameters: # You must provide a value for each of these parameters. # --------------------------------------------------------------------------------- cluster: - type: enum - enum: ["Clark-Services", "CARD-Service"] + type: string description: | The short name or full ARN of the cluster that hosts the service. From 3d0f666bee26f3719351570236b870dad9f171c5 Mon Sep 17 00:00:00 2001 From: Christopher Wagner <70287489+Cwagne17@users.noreply.github.com> Date: Thu, 12 Dec 2024 11:47:21 -0500 Subject: [PATCH 3/3] Update s3.yml to prevent path expansion of paths --- src/jobs/s3.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jobs/s3.yml b/src/jobs/s3.yml index c2df0ad..61dce13 100644 --- a/src/jobs/s3.yml +++ b/src/jobs/s3.yml @@ -73,7 +73,7 @@ steps: - run: name: Invalidate index.html and /assets directory in CloudFront command: |- - aws cloudfront create-invalidation --distribution-id $<> --paths /* + aws cloudfront create-invalidation --distribution-id $<> --paths '/*' # slack notificaitons - slack/notify: