Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mgubaidullin committed Feb 23, 2024
1 parent 1c8c124 commit 8732f10
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/app-oidc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Karavan
uses: actions/checkout@v3
uses: actions/checkout@v43
with:
path: karavan

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v43
with:
distribution: adopt
java-version: 17

- name: Cache local Maven repository
uses: actions/cache@v3
uses: actions/cache@v43
with:
path: |
~/.m2/repository
Expand All @@ -44,7 +44,7 @@ jobs:
# Building Karavan Core
- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v43
with:
node-version: '18.14.2'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Karavan
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: karavan

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17

- name: Cache local Maven repository
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.m2/repository
Expand All @@ -44,7 +44,7 @@ jobs:
# Building Karavan Core
- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.14.2'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/vscode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Generate Karavan UI model and API, Kamelets and Components
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17

- name: Cache local Maven repository
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.m2/repository
Expand All @@ -40,7 +40,7 @@ jobs:
# Building Karavan Core
- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20'

Expand Down
6 changes: 3 additions & 3 deletions karavan-app/src/main/webui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "4.4.0",
"private": true,
"scripts": {
"copy-designer": "cp -r ../../../../../karavan-designer/src/designer src",
"copy-knowledgebase": "cp -r ../../../../../karavan-designer/src/knowledgebase src",
"copy-topology": "cp -r ../../../../../karavan-designer/src/topology src",
"copy-designer": "cp -r ../../../../karavan-designer/src/designer src",
"copy-knowledgebase": "cp -r ../../../../karavan-designer/src/knowledgebase src",
"copy-topology": "cp -r ../../../../karavan-designer/src/topology src",
"copy-code": " npm run copy-designer && npm run copy-knowledgebase && npm run copy-topology",
"start": "export PORT=3003 && npm run copy-code && react-scripts start",
"build": "npm run copy-code && DISABLE_ESLINT_PLUGIN=true react-scripts build"
Expand Down

0 comments on commit 8732f10

Please # to comment.