Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
147 changes: 79 additions & 68 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,72 +1,83 @@
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:*"
update-types:
- "patch"
- "minor"
confluent-major-upgrade:
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: 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"
other-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: 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: "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"
2 changes: 1 addition & 1 deletion .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
token: ${{ github.token }}

- name: Download artifacts
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # infered from @v4
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # infered from @v4
with:
name: kafbat-ui-${{ inputs.version }}
path: api/build/libs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:

- name: Download docker image
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # infered from @v4
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # infered from @v4
with:
name: image
path: /tmp
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ jobs:
cache: 'gradle'

- name: Download build artifacts
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # infered from @v4
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # infered from @v4
with:
name: artifacts
path: api/build

- name: Download docker image
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # infered from @v4
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # infered from @v4
with:
name: image
path: /tmp
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
if: ${{ !cancelled() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) }}
steps:
- name: Download allure reports artifact
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # infered from @v4
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # infered from @v4
with:
name: reports
path: ./e2e-tests/build/allure-results
Expand Down
Loading