Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Apr 13, 2023
1 parent b676b48 commit 5fe9a20
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 41 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
fetch-depth: 2
- name: Verify Changed files in docs
uses: tj-actions/verify-changed-files@v7.1
uses: tj-actions/verify-changed-files@v13.1
id: verify-changed-files
with:
files: |
Expand Down Expand Up @@ -86,15 +86,15 @@ jobs:
name: junit-test-results
path: '**/build/test-results/test/TEST-*.xml'
retention-days: 1
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v3
with:
#files: ./coverage1.xml,./coverage2.xml # optional
flags: ${{ runner.os }} # optional
name: ${{ runner.os }}-tests # optional
verbose: true # optional (default = false)
- name: build-choco-package
if: runner.os == 'Windows'
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '2.2.204' # SDK Version to use.
- name: build-choco
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -53,7 +53,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -67,4 +67,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
2 changes: 1 addition & 1 deletion .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
with:
name: build-choco
path: build/choco
- uses: actions/setup-dotnet@v1
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '2.2.204' # SDK Version to use.
- name: choco-build
Expand Down
64 changes: 32 additions & 32 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ import org.gradle.crypto.checksum.Checksum

plugins {
id "distribution"
id "com.github.johnrengelman.shadow" version "8.0.0"
id "com.github.johnrengelman.shadow" version "8.1.1"
id "java"
id "com.github.breadmoirai.github-release" version "2.4.1"
id "io.toolebox.git-versioner" version "1.6.5"
id "io.toolebox.git-versioner" version "1.6.7"
id 'org.gradle.crypto.checksum' version '1.4.0'
id "com.diffplug.spotless" version "6.15.0"
id "com.diffplug.spotless" version "6.18.0"
id 'com.github.gmazzo.buildconfig' version "3.1.0"
id "com.dorongold.task-tree" version "2.1.1"
id "com.geoffgranum.gradle-conventional-changelog" version "0.3.1"
id "org.asciidoctor.jvm.convert" version "3.3.2"
id "org.ajoberstar.grgit" version "4.1.1"
id "org.ajoberstar.grgit" version "5.0.0"
id "org.sonarqube" version "4.0.0.2929"
id 'jacoco'
}
Expand All @@ -35,35 +35,35 @@ sourceSets.main.compileClasspath += sourceSets.java9.output.classesDirs;
dependencies {
implementation 'com.offbytwo:docopt:0.6.0.20150202'

implementation 'org.apache.commons:commons-text:1.9'
implementation 'org.apache.commons:commons-compress:1.20'
implementation 'info.picocli:picocli:4.6.3'
implementation 'io.quarkus.qute:qute-core:1.12.2.Final'
implementation 'org.apache.commons:commons-text:1.10.0'
implementation 'org.apache.commons:commons-compress:1.23.0'
implementation 'info.picocli:picocli:4.7.2'
implementation 'io.quarkus.qute:qute-core:3.0.0.Final'
implementation 'kr.motd.maven:os-maven-plugin:1.7.1'
implementation 'org.codehaus.plexus:plexus-java:1.0.6'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'org.codejive:java-properties:0.0.5'

implementation "org.slf4j:slf4j-nop:1.7.30"
implementation "org.jboss:jandex:2.2.3.Final"

implementation "org.apache.maven:maven-model:3.8.6"
implementation "org.apache.maven:maven-settings:3.8.6"
implementation "org.apache.maven:maven-settings-builder:3.8.6"
implementation "org.apache.maven:maven-resolver-provider:3.8.6"
implementation "org.apache.maven.resolver:maven-resolver-api:1.8.2"
implementation "org.apache.maven.resolver:maven-resolver-spi:1.8.2"
implementation "org.apache.maven.resolver:maven-resolver-impl:1.8.2"
implementation "org.apache.maven.resolver:maven-resolver-connector-basic:1.8.2"
implementation "org.apache.maven.resolver:maven-resolver-transport-file:1.8.2"
implementation "org.apache.maven.resolver:maven-resolver-transport-http:1.8.2"

testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.0"
testImplementation "org.junit.jupiter:junit-jupiter:5.9.0"
testImplementation "com.github.stefanbirkner:system-rules:1.17.2"
implementation 'org.codehaus.plexus:plexus-java:1.1.2'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'org.jsoup:jsoup:1.15.4'
implementation 'org.codejive:java-properties:0.0.6'

implementation "org.slf4j:slf4j-nop:2.0.7"
implementation "org.jboss:jandex:3.1.0"

implementation "org.apache.maven:maven-model:3.9.1"
implementation "org.apache.maven:maven-settings:3.9.1"
implementation "org.apache.maven:maven-settings-builder:3.9.1"
implementation "org.apache.maven:maven-resolver-provider:3.9.1"
implementation "org.apache.maven.resolver:maven-resolver-api:1.9.7"
implementation "org.apache.maven.resolver:maven-resolver-spi:1.9.7"
implementation "org.apache.maven.resolver:maven-resolver-impl:1.9.7"
implementation "org.apache.maven.resolver:maven-resolver-connector-basic:1.9.7"
implementation "org.apache.maven.resolver:maven-resolver-transport-file:1.9.7"
implementation "org.apache.maven.resolver:maven-resolver-transport-http:1.9.7"

testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.2"
testImplementation "org.junit.jupiter:junit-jupiter:5.9.2"
testImplementation "com.github.stefanbirkner:system-rules:1.19.0"
testImplementation "org.hamcrest:hamcrest-library:2.2"
testImplementation "com.github.tomakehurst:wiremock-jre8:2.32.0"
testImplementation "com.github.tomakehurst:wiremock-jre8:2.35.0"

//testImplementation 'com.github.maxandersen.karate:karate-junit:19e06766'
//testImplementation 'com.github.maxandersen.karate:karate-apache:19e06766'
Expand Down Expand Up @@ -207,7 +207,7 @@ test {
}

jacoco {
toolVersion = '0.8.7'
toolVersion = '0.8.8'
}

jacocoTestReport {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
id "com.gradle.enterprise" version "3.7.2"
id "com.gradle.enterprise" version "3.13"
}
}

Expand Down

0 comments on commit 5fe9a20

Please sign in to comment.