mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
chore(deps): update all deps
This commit is contained in:
5
.github/workflows/codeql-analysis.yml
vendored
5
.github/workflows/codeql-analysis.yml
vendored
@@ -44,14 +44,15 @@ jobs:
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||||
|
||||
# Set up JDK
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v1
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: 'adopt'
|
||||
java-version: 11
|
||||
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
|
||||
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
@@ -70,10 +70,14 @@ jobs:
|
||||
|
||||
# JDK
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v1
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: 'adopt'
|
||||
java-version: 11
|
||||
|
||||
- name: Validate Gradle wrapper
|
||||
uses: gradle/wrapper-validation-action@v1
|
||||
|
||||
# Gradle check
|
||||
- name: Build with Gradle
|
||||
env:
|
||||
@@ -86,7 +90,7 @@ jobs:
|
||||
./gradlew check jacoco --no-daemon
|
||||
|
||||
# Codecov
|
||||
- uses: codecov/codecov-action@v1
|
||||
- uses: codecov/codecov-action@v2
|
||||
with:
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
|
||||
@@ -128,13 +132,13 @@ jobs:
|
||||
|
||||
# Upload artifacts
|
||||
- name: Upload jar
|
||||
uses: actions/upload-artifact@v1
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: jar
|
||||
path: build/libs/
|
||||
|
||||
- name: Upload Executable
|
||||
uses: actions/upload-artifact@v1
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: exe
|
||||
path: build/executable/
|
||||
|
||||
@@ -3,7 +3,7 @@ plugins {
|
||||
id "java"
|
||||
id 'java-library'
|
||||
id "idea"
|
||||
id "com.github.johnrengelman.shadow" version "7.1.1"
|
||||
id "com.github.johnrengelman.shadow" version "7.1.2"
|
||||
id "application"
|
||||
|
||||
// test
|
||||
@@ -11,7 +11,7 @@ plugins {
|
||||
id 'org.gradle.test-retry' version '1.3.1'
|
||||
|
||||
// helper
|
||||
id "com.github.ben-manes.versions" version "0.39.0"
|
||||
id "com.github.ben-manes.versions" version "0.41.0"
|
||||
|
||||
// front
|
||||
id 'org.siouan.frontend-jdk11' version '6.0.0' apply false
|
||||
@@ -98,8 +98,8 @@ allprojects {
|
||||
// logs
|
||||
implementation "org.slf4j:slf4j-api:1.7.32"
|
||||
implementation "ch.qos.logback:logback-classic:1.2.9"
|
||||
implementation group: 'org.apache.logging.log4j', name: 'log4j-to-slf4j', version: '2.16.0'
|
||||
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version: '1.7.30'
|
||||
implementation group: 'org.apache.logging.log4j', name: 'log4j-to-slf4j', version: '2.17.1'
|
||||
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version: '1.7.33'
|
||||
|
||||
// jackson
|
||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
|
||||
|
||||
@@ -20,7 +20,7 @@ dependencies {
|
||||
|
||||
// utils
|
||||
implementation group: 'net.jodah', name: 'failsafe', version: '2.4.4'
|
||||
implementation 'com.github.oshi:oshi-core:5.8.6'
|
||||
implementation 'com.github.oshi:oshi-core:6.0.0'
|
||||
implementation 'io.pebbletemplates:pebble:3.1.5'
|
||||
|
||||
// scheduler
|
||||
@@ -33,10 +33,10 @@ dependencies {
|
||||
implementation 'com.github.docker-java:docker-java-transport-httpclient5:3.2.12'
|
||||
|
||||
// schema
|
||||
implementation group: 'com.github.victools', name: 'jsonschema-generator', version: '4.21.0'
|
||||
implementation group: 'com.github.victools', name: 'jsonschema-module-javax-validation', version: '4.21.0'
|
||||
implementation group: 'com.github.victools', name: 'jsonschema-module-jackson', version: '4.21.0'
|
||||
implementation group: 'com.github.victools', name: 'jsonschema-module-swagger-2', version: '4.21.0'
|
||||
implementation group: 'com.github.victools', name: 'jsonschema-generator', version: '4.22.0'
|
||||
implementation group: 'com.github.victools', name: 'jsonschema-module-javax-validation', version: '4.22.0'
|
||||
implementation group: 'com.github.victools', name: 'jsonschema-module-jackson', version: '4.22.0'
|
||||
implementation group: 'com.github.victools', name: 'jsonschema-module-swagger-2', version: '4.22.0'
|
||||
|
||||
// test
|
||||
testImplementation project(':repository-memory')
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
version=0.3.2-SNAPSHOT
|
||||
opensearchVersion=1.2.2
|
||||
micronautVersion=3.2.3
|
||||
jacksonVersion=2.13.1
|
||||
opensearchVersion=1.2.3
|
||||
micronautVersion=3.2.6
|
||||
kafkaVersion=3.0.0
|
||||
lombokVersion=1.18.22
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
3227
ui/package-lock.json
generated
3227
ui/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,13 +9,13 @@
|
||||
"lint": "vue-cli-service lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vue/composition-api": "^1.4.1",
|
||||
"@vue/composition-api": "^1.4.3",
|
||||
"axios": "^0.24.0",
|
||||
"bootstrap": "^4.6.0",
|
||||
"bootstrap": "^4.6.1",
|
||||
"bootstrap-vue": "^2.21.2",
|
||||
"chart.js": "^3.6.2",
|
||||
"core-js": "^3.20.0",
|
||||
"cron-parser": "^4.2.0",
|
||||
"chart.js": "^3.7.0",
|
||||
"core-js": "^3.20.2",
|
||||
"cron-parser": "^4.2.1",
|
||||
"cron-validator": "^1.2.1",
|
||||
"cronstrue": "^1.122.0",
|
||||
"cytoscape": "3.17.3",
|
||||
@@ -24,7 +24,7 @@
|
||||
"humanize-duration": "^3.27.1",
|
||||
"js-yaml": "^4.1.0",
|
||||
"lodash": "4.17.21",
|
||||
"markdown-it": "^12.3.0",
|
||||
"markdown-it": "^12.3.2",
|
||||
"markdown-it-anchor": "^8.4.1",
|
||||
"markdown-it-mark": "^3.0.1",
|
||||
"markdown-it-meta": "0.0.1",
|
||||
@@ -33,15 +33,15 @@
|
||||
"moment-range": "4.0.2",
|
||||
"monaco-yaml": "^3.2.1",
|
||||
"portal-vue": "^2.1.7",
|
||||
"prismjs": "^1.25.0",
|
||||
"qs": "^6.10.2",
|
||||
"prismjs": "^1.26.0",
|
||||
"qs": "^6.10.3",
|
||||
"throttle-debounce": "^3.0.1",
|
||||
"v-hotkey": "^0.9.0",
|
||||
"vue": "^2.6.14",
|
||||
"vue-analytics": "^5.22.1",
|
||||
"vue-axios": "^3.4.0",
|
||||
"vue-chart-3": "^2.0.3",
|
||||
"vue-i18n": "^8.26.7",
|
||||
"vue-chart-3": "^2.0.5",
|
||||
"vue-i18n": "^8.26.8",
|
||||
"vue-material-design-icons": "^5.0.0",
|
||||
"vue-moment": "^4.0.0",
|
||||
"vue-nprogress": "^0.2.0",
|
||||
@@ -52,18 +52,18 @@
|
||||
"vuex": "^3.6.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.16.5",
|
||||
"@babel/preset-env": "^7.16.5",
|
||||
"@babel/core": "^7.16.7",
|
||||
"@babel/preset-env": "^7.16.8",
|
||||
"@vue/cli-plugin-babel": "^4.5.15",
|
||||
"@vue/cli-plugin-eslint": "^4.5.15",
|
||||
"@vue/cli-plugin-unit-jest": "^4.5.15",
|
||||
"@vue/cli-service": "^4.5.15",
|
||||
"@vue/test-utils": "^1.3.0",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"babel-jest": "^27.4.5",
|
||||
"babel-jest": "^27.4.6",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-plugin-jest": "^25.3.0",
|
||||
"eslint-plugin-vue": "^8.2.0",
|
||||
"eslint-plugin-jest": "^25.3.4",
|
||||
"eslint-plugin-vue": "^8.3.0",
|
||||
"jest-transform-stub": "^2.0.0",
|
||||
"monaco-editor-webpack-plugin": "^5.0.0",
|
||||
"monaco-editor": "^0.29.1",
|
||||
|
||||
@@ -34,6 +34,7 @@
|
||||
|
||||
this.$emit("rendered", outHtml);
|
||||
|
||||
// eslint-disable-next-line vue/no-async-in-computed-properties
|
||||
this.$nextTick(() => {
|
||||
Prism.highlightAll();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user