From 60efa7eee2aae2a0fae882b32762ecc6c197a850 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Tue, 31 Oct 2023 07:41:28 -0600 Subject: [PATCH] update github actions; add dependabot checking --- .github/dependabot.yml | 9 +++++++++ .github/workflows/nightly-update-and-trigger.yml | 5 +++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..7212528 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +--- +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: monthly + commit-message: + prefix: ci diff --git a/.github/workflows/nightly-update-and-trigger.yml b/.github/workflows/nightly-update-and-trigger.yml index 4d82550..d9191ad 100644 --- a/.github/workflows/nightly-update-and-trigger.yml +++ b/.github/workflows/nightly-update-and-trigger.yml @@ -2,20 +2,21 @@ name: Trigger a quay.io EE rebuild - update requirements.yml, ansible-builder fi on: schedule: - cron: "37 1 * * *" + workflow_dispatch: jobs: trigger-ee-rebuild: runs-on: ubuntu-latest name: Trigger a quay.io EE rebuild - update requirements.yml, ansible-builder files steps: - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 - name: Install ansible-builder and ansible shell: bash run: | set -euxo pipefail pip install -U ansible-builder ansible - name: checkout current repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Trigger a quay.io EE rebuild - update requirements.yml, ansible-builder files shell: bash run: |