From f7c8b41cc6bad4b694b02d298a9b280811f3b267 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 4 Jun 2022 23:20:18 +0100 Subject: [PATCH 1/2] Rebuild container weekly Due to its nature, the container has access to sensitive data. Therefore the underlying OS should be updated regularly --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e3a3e8..acd43f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,8 @@ name: Build, Test & Deploy - master tags: - "v*" + schedule: + - cron: '0 0 * * 0' # Midnight on Sunday workflow_dispatch: inputs: pytest_addopts: From a23328012af21a12e10fbf700e0e2b02be14ccbc Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 22 Jun 2022 14:18:35 +0100 Subject: [PATCH 2/2] Reformat cron expression line --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acd43f8..d5867b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ name: Build, Test & Deploy tags: - "v*" schedule: - - cron: '0 0 * * 0' # Midnight on Sunday + - cron: "0 0 * * 0" # Midnight on Sunday workflow_dispatch: inputs: pytest_addopts: