From 50849cd2448e17ab3f036d73af1e709ec99f534b Mon Sep 17 00:00:00 2001 From: Jason Power Date: Fri, 25 Oct 2024 10:13:43 +0100 Subject: [PATCH] add image_updater (#138) --- .github/workflows/image_updater.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/image_updater.yaml diff --git a/.github/workflows/image_updater.yaml b/.github/workflows/image_updater.yaml new file mode 100644 index 00000000..fa9010f7 --- /dev/null +++ b/.github/workflows/image_updater.yaml @@ -0,0 +1,19 @@ + +name: GH Actions Cron Schedule +on: + workflow_dispatch: + schedule: + # Every M-F at 12:00am run this job + - cron: "0 0 * * 1-5" + +jobs: + check-image-version: + uses: securesign/actions/.github/workflows/check-image-version.yaml@main + strategy: + matrix: + branch: [main] + with: + branch: ${{ matrix.branch }} + images: '["registry.access.redhat.com/ubi9/go-toolset", "registry.access.redhat.com/ubi9/ubi-minimal"]' + secrets: + token: ${{ secrets.GITHUB_TOKEN }}