Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
with:
fetch-depth: 0
- name: Check Markdown format
uses: DavidAnson/markdownlint-cli2-action@v13
uses: DavidAnson/markdownlint-cli2-action@v20
with:
config: .github/workflows/configs/markdownlint/.markdownlint.json
- name: Check Markdown links
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-pull-request-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Get Branch Name
uses: mdecoleman/pr-branch-name@2.0.0
uses: mdecoleman/pr-branch-name@v3.0.0
id: branch_name
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -30,7 +30,7 @@ jobs:
run: echo "TEMPLATE_NAME=$(cat .github/PULL_REQUEST_TEMPLATE/${{ env.BRANCH_DESIGNATOR }}_pull_request_template.md > /dev/null 2>&1 && echo ${{ env.BRANCH_DESIGNATOR }}_pull_request_template.md || echo task_pull_request_template.md)" >> $GITHUB_ENV
- name: Render Pull Request template
id: template
uses: chuhlomin/render-template@v1.5
uses: chuhlomin/render-template@v1.10
with:
template: .github/PULL_REQUEST_TEMPLATE/${{ env.TEMPLATE_NAME }}
vars: |
Expand Down
2 changes: 1 addition & 1 deletion application/change_event_dlq_handler/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-lambda-powertools[tracer] ~= 2.43.0
aws-lambda-powertools[tracer] ~= 3.20.0
2 changes: 1 addition & 1 deletion application/dos_db_handler/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
aws-lambda-powertools[tracer] ~= 2.43.0
aws-lambda-powertools[tracer] ~= 3.20.0
psycopg[binary]
2 changes: 1 addition & 1 deletion application/dos_db_update_dlq_handler/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-lambda-powertools[tracer] ~= 2.43.0
aws-lambda-powertools[tracer] ~= 3.20.0
2 changes: 1 addition & 1 deletion application/event_replay/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
aws-lambda-powertools[tracer] ~= 2.43.0
aws-lambda-powertools[tracer] ~= 3.20.0
simplejson
2 changes: 1 addition & 1 deletion application/ingest_change_event/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-lambda-powertools[tracer, validation] ~= 2.43.0
aws-lambda-powertools[tracer, validation] ~= 3.20.0
2 changes: 1 addition & 1 deletion application/quality_checker/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
aws-lambda-powertools[tracer, validation] ~= 2.43.0
aws-lambda-powertools[tracer, validation] ~= 3.20.0
psycopg[binary]
2 changes: 1 addition & 1 deletion application/send_email/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws-lambda-powertools[tracer] ~= 2.43.0
aws-lambda-powertools[tracer] ~= 3.20.0
2 changes: 1 addition & 1 deletion application/service_matcher/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
aws-lambda-powertools[tracer] ~= 2.43.0
aws-lambda-powertools[tracer] ~= 3.20.0
psycopg[binary]
pytz
2 changes: 1 addition & 1 deletion application/service_sync/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
aws-lambda-powertools[tracer] ~= 2.43.0
aws-lambda-powertools[tracer] ~= 3.20.0
psycopg[binary]
pytz
2 changes: 1 addition & 1 deletion application/slack_messenger/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
aws-lambda-powertools[tracer] ~= 2.43.0
aws-lambda-powertools[tracer] ~= 3.20.0
requests
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resource "aws_codebuild_webhook" "build_image_webhook" {
resource "aws_codebuild_project" "build_image" {
for_each = local.independent_build_images
name = "${var.project_id}-${var.environment}-build-${each.key}-stage"
description = "Builds ${each.key} x86 development docker container image"
description = "Builds ${each.key} x64 development docker container image"
build_timeout = "10"
queued_timeout = "5"
service_role = data.aws_iam_role.pipeline_role.arn
Expand All @@ -45,8 +45,8 @@ resource "aws_codebuild_project" "build_image" {

environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
type = "LINUX_CONTAINER"
image = "aws/codebuild/amazonlinux2-aarch64-standard:3.0"
type = "ARM_CONTAINER"
image_pull_credentials_type = "CODEBUILD"
privileged_mode = true

Expand Down
Loading