From 074134f9ffee3df7dd43c95ce9397f1f24d1acb8 Mon Sep 17 00:00:00 2001 From: AdminCI Date: Wed, 10 Apr 2024 13:45:45 +0000 Subject: [PATCH] change default postgres version to build to REL_13_5 --- .github/workflows/build-postgres.yaml | 2 +- .github/workflows/on-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-postgres.yaml b/.github/workflows/build-postgres.yaml index b26fe6f..70c9c27 100644 --- a/.github/workflows/build-postgres.yaml +++ b/.github/workflows/build-postgres.yaml @@ -6,7 +6,7 @@ on: tag: description: "postgres tag to build in the format REL__" required: true - default: REL_13_4 # DO NOT CHANGE THIS LINE. this default value will be overridden automatically + default: REL_13_5 # DO NOT CHANGE THIS LINE. this default value will be overridden automatically workflow_call: inputs: tag: diff --git a/.github/workflows/on-push.yaml b/.github/workflows/on-push.yaml index 569c5a3..2647cc3 100644 --- a/.github/workflows/on-push.yaml +++ b/.github/workflows/on-push.yaml @@ -8,4 +8,4 @@ jobs: call-build: uses: ./.github/workflows/build-postgres.yaml with: - tag: REL_13_4 # DO NOT CHANGE THIS LINE. this default value will be overridden automatically + tag: REL_13_5 # DO NOT CHANGE THIS LINE. this default value will be overridden automatically