From 51a65021e3958a33e7bdb35ae1b03032f553432e Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 09:32:57 -0400 Subject: [PATCH 1/8] Update dependabot.yml --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c11f1d976..0de94a267 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,6 +20,20 @@ updates: update-types: - "patch" - "minor" + confluent-minor-patch-dependencies: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + # We will handle major upgrades manually + update-types: + - "patch" + - "minor" + confluent-major-dependencies: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + update-types: + - "major" other-dependencies: patterns: - "*" From c530f5f516b84eefe53c4e8d2189cb59b4ce0b19 Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 09:34:38 -0400 Subject: [PATCH 2/8] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0de94a267..23b1c3bbb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -33,7 +33,7 @@ updates: - "io.confluent:*" - "org.apache.kafka:*" update-types: - - "major" + - "major" other-dependencies: patterns: - "*" From dd8f44c8145b9ec70a503b94df01b144eee75c84 Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 09:35:03 -0400 Subject: [PATCH 3/8] Update dependabot.yml --- .github/dependabot.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 23b1c3bbb..954474dd4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -28,12 +28,6 @@ updates: update-types: - "patch" - "minor" - confluent-major-dependencies: - patterns: - - "io.confluent:*" - - "org.apache.kafka:*" - update-types: - - "major" other-dependencies: patterns: - "*" From b3f7c21e01dc78f374bfc2aeb95cd9322daf8fab Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 09:36:49 -0400 Subject: [PATCH 4/8] Update dependabot.yml --- .github/dependabot.yml | 153 +++++++++++++++++++++-------------------- 1 file changed, 79 insertions(+), 74 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 954474dd4..fa0caaf94 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,80 +1,85 @@ version: 2 updates: -- package-ecosystem: gradle - directory: "/" - schedule: - interval: weekly - time: "10:00" - timezone: Europe/London - open-pull-requests-limit: 10 - labels: - - "type/dependencies" - - "scope/backend" - groups: - spring-boot-dependencies: - patterns: - - "org.springframework.boot:*" - - "io.spring.dependency-management" - # We will handle major upgrades manually - update-types: - - "patch" - - "minor" - confluent-minor-patch-dependencies: - patterns: - - "io.confluent:*" - - "org.apache.kafka:*" - # We will handle major upgrades manually - update-types: - - "patch" - - "minor" - other-dependencies: - patterns: - - "*" - update-types: - - "patch" - - "minor" + - package-ecosystem: gradle + directory: "/" + schedule: + interval: weekly + time: "10:00" + timezone: Europe/London + open-pull-requests-limit: 10 + labels: + - "type/dependencies" + - "scope/backend" + groups: + spring-boot-dependencies: + patterns: + - "org.springframework.boot:*" + - "io.spring.dependency-management" + # We will handle major upgrades manually + update-types: + - "patch" + - "minor" + confluent-minor-patch-dependencies: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + update-types: + - "patch" + - "minor" + confluent-major-upgrades: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + update-types: + - "major" + other-dependencies: + patterns: + - "*" + update-types: + - "patch" + - "minor" -- package-ecosystem: docker - directory: "/api" - schedule: - interval: weekly - time: "10:00" - timezone: Europe/London - open-pull-requests-limit: 10 - ignore: - - dependency-name: "azul/zulu-openjdk-alpine" - update-types: ["version-update:semver-major"] - labels: - - "type/dependencies" - - "scope/backend" + - package-ecosystem: docker + directory: "/api" + schedule: + interval: weekly + time: "10:00" + timezone: Europe/London + open-pull-requests-limit: 10 + ignore: + - dependency-name: "azul/zulu-openjdk-alpine" + update-types: ["version-update:semver-major"] + labels: + - "type/dependencies" + - "scope/backend" -- package-ecosystem: npm - directory: "/frontend" - schedule: - interval: weekly - time: "10:00" - timezone: Europe/London - open-pull-requests-limit: 10 - versioning-strategy: increase-if-necessary - labels: - - "type/dependencies" - - "scope/frontend" - groups: - pnpm-dependencies: - patterns: - - "*" - update-types: - - "patch" - - "minor" + - package-ecosystem: npm + directory: "/frontend" + schedule: + interval: weekly + time: "10:00" + timezone: Europe/London + open-pull-requests-limit: 10 + versioning-strategy: increase-if-necessary + labels: + - "type/dependencies" + - "scope/frontend" + groups: + pnpm-dependencies: + patterns: + - "*" + update-types: + - "patch" + - "minor" -- package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: weekly - time: "10:00" - timezone: Europe/London - open-pull-requests-limit: 10 - labels: - - "type/dependencies" - - "scope/infra" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: weekly + time: "10:00" + timezone: Europe/London + open-pull-requests-limit: 10 + labels: + - "type/dependencies" + - "scope/infra" From 37fe93760448737bf970955d2b6a27462023a892 Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Wed, 16 Jul 2025 19:53:00 -0400 Subject: [PATCH 5/8] Update dependabot.yml --- .github/dependabot.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fa0caaf94..c66aaccd6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -27,12 +27,6 @@ updates: update-types: - "patch" - "minor" - confluent-major-upgrades: - patterns: - - "io.confluent:*" - - "org.apache.kafka:*" - update-types: - - "major" other-dependencies: patterns: - "*" From bbd6b051013edf0e30cace5a6eb1e5e3c5f42411 Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Mon, 21 Jul 2025 08:42:41 -0400 Subject: [PATCH 6/8] Update dependabot.yml --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c66aaccd6..cbe2f6c83 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -27,6 +27,12 @@ updates: update-types: - "patch" - "minor" + confluent-major-upgrade: + patterns: + - "io.confluent:*" + - "org.apache.kafka:*" + update-types: + - "major" other-dependencies: patterns: - "*" From 184e4da8dd6facf9a3ae6e5b19cc2caf8a30ae0b Mon Sep 17 00:00:00 2001 From: Yeikel Santana Date: Mon, 21 Jul 2025 08:44:25 -0400 Subject: [PATCH 7/8] Update dependabot.yml --- .github/dependabot.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cbe2f6c83..6c651bfb5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,5 @@ version: 2 updates: - - package-ecosystem: gradle directory: "/" schedule: @@ -27,19 +26,18 @@ updates: update-types: - "patch" - "minor" - confluent-major-upgrade: + confluent-major-upgrade: patterns: - "io.confluent:*" - "org.apache.kafka:*" update-types: - - "major" + - "major" other-dependencies: patterns: - "*" update-types: - "patch" - "minor" - - package-ecosystem: docker directory: "/api" schedule: From ed5f0eb7077c29b38ea212a5e050c8f430d47309 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 14:29:17 +0000 Subject: [PATCH 8/8] Bump aws-actions/configure-aws-credentials from 4.0.2 to 4.3.1 Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) from 4.0.2 to 4.3.1. - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/e3dd6a429d7300a6a4c196c26e071d42e0343502...7474bc4690e29a8392af63c5b98e7449536d5c3a) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/branch-deploy.yml | 2 +- .github/workflows/build-public-image.yml | 2 +- .github/workflows/delete-public-image.yml | 2 +- .github/workflows/docker_publish.yml | 2 +- .github/workflows/separate_env_public_create.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/branch-deploy.yml b/.github/workflows/branch-deploy.yml index ef2758953..7f8159bd9 100644 --- a/.github/workflows/branch-deploy.yml +++ b/.github/workflows/branch-deploy.yml @@ -52,7 +52,7 @@ jobs: restore-keys: | ${{ runner.os }}-buildx- - name: Configure AWS credentials for Kafka-UI account - uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # infered from @v4 + uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # infered from @v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/build-public-image.yml b/.github/workflows/build-public-image.yml index ca13bae2b..379074c6c 100644 --- a/.github/workflows/build-public-image.yml +++ b/.github/workflows/build-public-image.yml @@ -50,7 +50,7 @@ jobs: restore-keys: | ${{ runner.os }}-buildx- - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # infered from @v4 + uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # infered from @v4 with: aws-region: us-east-1 role-to-assume: ${{ secrets.AWS_ROLE }} diff --git a/.github/workflows/delete-public-image.yml b/.github/workflows/delete-public-image.yml index af20d99d0..918ac1b65 100644 --- a/.github/workflows/delete-public-image.yml +++ b/.github/workflows/delete-public-image.yml @@ -15,7 +15,7 @@ jobs: tag='${{ github.event.pull_request.number }}' echo "tag=${tag}" >> $GITHUB_OUTPUT - name: Configure AWS credentials for Kafka-UI account - uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # infered from @v4 + uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # infered from @v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/docker_publish.yml b/.github/workflows/docker_publish.yml index a71a3652b..6499c0bbd 100644 --- a/.github/workflows/docker_publish.yml +++ b/.github/workflows/docker_publish.yml @@ -64,7 +64,7 @@ jobs: - name: Configure AWS credentials if: matrix.registry == 'ecr' - uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # infered from @v4 + uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # infered from @v4 with: aws-region: us-east-1 # This region only for public ECR role-to-assume: ${{ secrets.AWS_ROLE }} diff --git a/.github/workflows/separate_env_public_create.yml b/.github/workflows/separate_env_public_create.yml index 760449b68..e8b3830cc 100644 --- a/.github/workflows/separate_env_public_create.yml +++ b/.github/workflows/separate_env_public_create.yml @@ -52,7 +52,7 @@ jobs: restore-keys: | ${{ runner.os }}-buildx- - name: Configure AWS credentials for Kafka-UI account - uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # infered from @v4 + uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # infered from @v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}