From f4161922d3e8eec8010b02ffb9af0ce560735fad Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 10:51:43 -0700 Subject: [PATCH 1/4] chore: add enterprise Dependabot configuration --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6fc02f4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + target-branch: main + schedule: {interval: weekly, day: friday} + open-pull-requests-limit: 5 + cooldown: {default-days: 7} + groups: + github-actions: {patterns: ["*"]} + labels: [dependencies, github-actions] + commit-message: {prefix: ci, include: scope} From 7864f5a3bba76e10e06da503c4d72b58c2ca4b72 Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 10:53:25 -0700 Subject: [PATCH 2/4] chore: standardize enterprise Dependabot configuration From c9de79f42bb846c43b860ee9b87b5d8d96371f12 Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Tue, 14 Jul 2026 14:45:35 -0700 Subject: [PATCH 3/4] style: use block-style Dependabot YAML --- .github/dependabot.yml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6fc02f4..960f2b2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,10 +3,19 @@ updates: - package-ecosystem: github-actions directory: / target-branch: main - schedule: {interval: weekly, day: friday} + schedule: + interval: weekly + day: friday open-pull-requests-limit: 5 - cooldown: {default-days: 7} + cooldown: + default-days: 7 groups: - github-actions: {patterns: ["*"]} - labels: [dependencies, github-actions] - commit-message: {prefix: ci, include: scope} + github-actions: + patterns: + - "*" + labels: + - dependencies + - github-actions + commit-message: + prefix: ci + include: scope From 768cd18c08f0c87519b415812ee96f4071178399 Mon Sep 17 00:00:00 2001 From: Thomas Vincent Date: Sun, 30 Aug 2026 18:06:33 -0700 Subject: [PATCH 4/4] ci: test PHP 8.2-8.4 against Cacti and add ondrej PPA for apache mod Cacti core now requires PHP >= 8.2, so the 8.1 integration job fails the composer platform check; Ubuntu Noble also lacks libapache2-mod-php for non-native versions without the ondrej PPA. Signed-off-by: Thomas Vincent --- .github/workflows/plugin-ci-workflow.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/plugin-ci-workflow.yml b/.github/workflows/plugin-ci-workflow.yml index 7e0602b..e44cd5a 100644 --- a/.github/workflows/plugin-ci-workflow.yml +++ b/.github/workflows/plugin-ci-workflow.yml @@ -38,7 +38,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.1', '8.2', '8.3', '8.4'] + php: ['8.2', '8.3', '8.4'] os: [ubuntu-latest] services: @@ -82,7 +82,9 @@ jobs: run: php -v - name: Run apt-get update - run: sudo apt-get update + run: | + sudo add-apt-repository -y ppa:ondrej/php + sudo apt-get update - name: Install System Dependencies run: sudo apt-get install -y apache2 snmp snmpd rrdtool fping libapache2-mod-php${{ matrix.php }}