From b6bbcc9d729dafc798c493dbd67deaafb3dcdea1 Mon Sep 17 00:00:00 2001 From: Pieter Callewaert Date: Fri, 9 May 2025 08:50:41 +0200 Subject: [PATCH 1/2] Update dependabot config and improve test workflow --- .github/dependabot.yml | 13 ++++--------- .github/workflows/test.yml | 8 +++++++- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2fc8e0e24..0db626283 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,23 +1,18 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - version: 2 updates: - package-ecosystem: "github-actions" target-branch: "master" directory: "/" schedule: - interval: "daily" + interval: "weekly" open-pull-requests-limit: 10 labels: - dependencies - package-ecosystem: "docker" target-branch: "master" - directory: "/build" + directory: "/" schedule: - interval: "daily" + interval: "weekly" open-pull-requests-limit: 10 labels: - dependencies @@ -25,7 +20,7 @@ updates: target-branch: "master" directory: "/" schedule: - interval: "daily" + interval: "weekly" open-pull-requests-limit: 10 labels: - dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 57d209c08..6db13f476 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,12 @@ name: Tests -on: [push, pull_request] +on: + pull_request: + branches: + - master + push: + branches: + - master jobs: test: From a139ba81ded7e05bbe88a5bc1c5479370dd393f1 Mon Sep 17 00:00:00 2001 From: Pieter Callewaert Date: Fri, 9 May 2025 09:08:37 +0200 Subject: [PATCH 2/2] Fix release workflow --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 06974a2c4..c897ed909 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,6 @@ jobs: uses: docker/build-push-action@v6 with: context: . - file: ./build/Dockerfile.dist platforms: linux/amd64,linux/arm64 push: true tags: |