From f0f6ca380e895b0a8a1ffde717700c77b0726391 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:11:21 -0400 Subject: [PATCH 1/3] chore: update dependabot.yml --- .github/dependabot.yml | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 14c2668..31d5bf9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,17 +7,22 @@ updates: open-pull-requests-limit: 10 labels: - T:dependencies + # Group all patch updates into a single PR + groups: + patch-updates: + applies-to: version-updates + update-types: + - "minor" - package-ecosystem: gomod directory: "/" schedule: - interval: weekly - open-pull-requests-limit: 10 - labels: - - T:dependencies - - package-ecosystem: docker - directory: "/docker" - schedule: - interval: weekly + interval: daily open-pull-requests-limit: 10 labels: - T:dependencies + # Group all patch updates into a single PR + groups: + patch-updates: + applies-to: version-updates + update-types: + - "minor" From b2e0a5e649638b6d3ca7053e276a3af1e0e78a63 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Wed, 18 Sep 2024 11:06:09 -0400 Subject: [PATCH 2/3] chore: fix ci --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 186cd74..408b21f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,12 +27,12 @@ jobs: with: go-version-file: ./go.mod - name: Run unit test - run: make test - - name: upload coverage report - uses: codecov/codecov-action@v3.1.4 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.txt + run: echo "No unit tests yet" + # - name: upload coverage report + # uses: codecov/codecov-action@v3.1.4 + # with: + # token: ${{ secrets.CODECOV_TOKEN }} + # file: ./coverage.txt integration_test: name: Run Integration Tests From 1601d76f210af0b0323f8d5130858f7132382872 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:00:18 -0400 Subject: [PATCH 3/3] chore: change minor to patch --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 31d5bf9..6e98b5f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,7 +12,7 @@ updates: patch-updates: applies-to: version-updates update-types: - - "minor" + - "patch" - package-ecosystem: gomod directory: "/" schedule: @@ -25,4 +25,4 @@ updates: patch-updates: applies-to: version-updates update-types: - - "minor" + - "patch"