From be2c5e32aecd75b7a77f9c6b5b2b73589875c9b9 Mon Sep 17 00:00:00 2001 From: Daniel Bodky Date: Fri, 7 Jul 2023 17:11:18 +0200 Subject: [PATCH] Adds scheduled scan for better base image(s) --- .github/workflows/recommend-base.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/recommend-base.yml diff --git a/.github/workflows/recommend-base.yml b/.github/workflows/recommend-base.yml new file mode 100644 index 0000000..23ecc91 --- /dev/null +++ b/.github/workflows/recommend-base.yml @@ -0,0 +1,22 @@ +name: Recommend Base Image Improvements + +on: + schedule: + cron: '0 0 1 */1 *' + workflow_dispatch: {} + +jobs: + recommendations: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Docker Scout + id: docker-scout + uses: docker/scout-action@v0.18.1 + with: + command: recommendations + image: dbodky/dashing-icinga2:latest +