This is an automated email from the ASF dual-hosted git repository.
mgubaidullin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git
The following commit(s) were added to refs/heads/main by this push:
new 3c277469 fixes
3c277469 is described below
commit 3c2774694161cbb98b6038ee7dbf6866e261627f
Author: Marat Gubaidullin <[email protected]>
AuthorDate: Tue Aug 25 11:42:30 2026 -0400
fixes
---
.github/workflows/app.yml | 6 +++---
.github/workflows/docker-devmode.yml | 6 +++---
karavan-app/src/main/webui/src/ui/page-system/SystemPage.tsx | 6 ------
3 files changed, 6 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/app.yml b/.github/workflows/app.yml
index 63ecce68..70d1ff8a 100644
--- a/.github/workflows/app.yml
+++ b/.github/workflows/app.yml
@@ -25,11 +25,11 @@ jobs:
with:
path: karavan
- - name: Set up JDK 21
+ - name: Set up JDK 25
uses: actions/setup-java@v5
with:
- distribution: adopt
- java-version: 21
+ distribution: temurin
+ java-version: 25
- name: Cache local Maven repository
uses: actions/cache@v5
diff --git a/.github/workflows/docker-devmode.yml
b/.github/workflows/docker-devmode.yml
index 3ef111bc..e5d0c5d7 100644
--- a/.github/workflows/docker-devmode.yml
+++ b/.github/workflows/docker-devmode.yml
@@ -16,16 +16,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
- uses: actions/checkout@v4 # Note: actions/checkout only goes up to v4
currently
+ uses: actions/checkout@v7
- name: Set up JDK 21
- uses: actions/setup-java@v4
+ uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 21
- name: Cache local Maven repository
- uses: actions/cache@v4
+ uses: actions/cache@v6
with:
path: |
~/.m2/repository
diff --git a/karavan-app/src/main/webui/src/ui/page-system/SystemPage.tsx
b/karavan-app/src/main/webui/src/ui/page-system/SystemPage.tsx
index d12b2458..28aee8d0 100644
--- a/karavan-app/src/main/webui/src/ui/page-system/SystemPage.tsx
+++ b/karavan-app/src/main/webui/src/ui/page-system/SystemPage.tsx
@@ -81,12 +81,6 @@ export const SystemPage = () => {
<div className="system-page-toolbar" style={{justifyContent:
"flex-end"}}>
<Button icon={<SyncAltIcon/>} variant='link'
onClick={refresh}/>
{searchInput()}
- {tabIndex === 'secrets' && isDev &&
- <Button onClick={event => setIsNewSecretOpen(true)}>Add
Secret</Button>
- }
- {tabIndex === 'configMaps' &&
- <Button onClick={event => setIsNewConfigMapOpen(true)}>Add
ConfigMap</Button>
- }
{tabIndex === 'containers' && isDev &&
<Tooltip content="Cleanup statuses">
<Button className="dev-action-button"