Skip to content

Commit 479ee0a

Browse files
[PRM-714] updated pipeline to java 25, hardcoded localstack version
1 parent 61b8d93 commit 479ee0a

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/full-deployment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ jobs:
101101
service: pds-adaptor
102102
environment: ${{ inputs.environment }}
103103
is_deployment: ${{ inputs.is_deployment }}
104+
# TODO PRM-713 REMOVE THIS LINE SO IT TAKES THE DEFAULT
104105
java_version: "11"
105106
ecr_alias: deductions/pds-adaptor
106107
secrets: inherit

.github/workflows/service-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ jobs:
109109
environment: dev
110110
is_deployment: ${{ github.ref == 'refs/heads/main' }}
111111
requires_localstack: true
112+
# PRM-711: Remove the hardcoded java_versions once all services are compatible with Java 25
113+
java_version: "25"
112114
ecr_alias: deductions/nems-event-processor
113115
secrets: inherit
114116

services/ehr-transfer-service/docker-compose.localstack-local.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,14 @@ services:
2525

2626
localstack:
2727
container_name: "localstack-ehr-transfer-service"
28-
image: localstack/localstack
28+
image: localstack/localstack:4.14.0
2929
ports:
3030
- "4566:4566"
3131
network_mode: bridge
3232
environment:
3333
- DOCKER_HOST=unix:///var/run/docker.sock
3434
- SERVICES=sqs,sns,dynamodb,s3
3535
- GATEWAY_LISTEN=4566
36-
- LOCALSTACK_ACKNOWLEDGE_ACCOUNT_REQUIREMENT=1
3736
volumes:
3837
- "/var/run/docker.sock:/var/run/docker.sock"
3938
- "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"

services/nems-event-processor/docker-compose.localstack-local.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
localstack:
33
container_name: "localstack-nems-event-processor"
4-
image: localstack/localstack
4+
image: localstack/localstack:4.14.0
55
network_mode: bridge
66
ports:
77
- "127.0.0.1:4566:4566"

0 commit comments

Comments
 (0)