From d73d129a99f3602592cd8d3906e7c4e75ea3f8d4 Mon Sep 17 00:00:00 2001 From: mike seibel Date: Thu, 5 Dec 2024 11:15:16 -0800 Subject: [PATCH 1/2] broad stdout permissions --- scripts/start.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/start.sh b/scripts/start.sh index d143b19..ea7e15c 100644 --- a/scripts/start.sh +++ b/scripts/start.sh @@ -36,7 +36,6 @@ done CONFIG_FILE_DIRECTORY=/config CONFIG_TEMPLATE_EXTENSION=tpl CONFIG_FILE_EXTENSION=cf -# don't substitute missing ENV vars, they are for postfix to substitute. echo "processing templates in ${CONFIG_FILE_DIRECTORY}:" for CFG_TEMPLATE_IN in $(echo ${CONFIG_FILE_DIRECTORY}/*.${CONFIG_TEMPLATE_EXTENSION}) do @@ -132,6 +131,9 @@ do fi done +echo "set stdout permission" +chmod ugo+rw /dev/stdout + echo "Verify postfix configuration" /usr/sbin/postfix check From 04471f6d381fd89f10d5e22f658d8327caf8fed3 Mon Sep 17 00:00:00 2001 From: mike seibel Date: Thu, 5 Dec 2024 11:28:35 -0800 Subject: [PATCH 2/2] bump cicd runner --- .github/workflows/cicd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index ccfa4a5..a56bd93 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -13,7 +13,7 @@ on: jobs: context: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 outputs: commit_hash: ${{ steps.context.outputs.commit_hash }} @@ -28,7 +28,7 @@ jobs: release_name: ${{ env.RELEASE_NAME }} build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 needs: context