From 2773978abc3c304a17c5eeb35d74855999952d00 Mon Sep 17 00:00:00 2001 From: Charles Collins Date: Tue, 13 Jan 2026 14:07:49 -0600 Subject: [PATCH 1/2] Fixed Github action runner for create_release --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 2f7fd4a..ad9b0d1 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10' ] + python-version: ['3.12' ] steps: - uses: actions/checkout@v3 - name: Get tag version From a1a392040090b34dd974403f7b522e8f7ccba031 Mon Sep 17 00:00:00 2001 From: Charles Collins Date: Tue, 13 Jan 2026 14:21:12 -0600 Subject: [PATCH 2/2] Updated Python versions in snyk and terraform files --- .snyk | 2 +- main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.snyk b/.snyk index 087cd47..c1c1cba 100644 --- a/.snyk +++ b/.snyk @@ -1,3 +1,3 @@ version: v1.25.0 language-settings: - python: "3.10" \ No newline at end of file + python: "3.12" \ No newline at end of file diff --git a/main.tf b/main.tf index 3159a95..1630af8 100644 --- a/main.tf +++ b/main.tf @@ -9,7 +9,7 @@ resource "aws_lambda_function" "rds_lambda" { function_name = "${var.stack_prefix}-rds-lambda" source_code_hash = filebase64sha256("${path.module}/${local.lambda_package}") handler = "task.lambda_handler.handler" - runtime = "python3.10" + runtime = "python3.12" filename = "${path.module}/${local.lambda_package}" role = var.cumulus_lambda_role_arn timeout = var.timeout