Skip to content

Commit

Permalink
feat(deps): Update runtime dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
heubeck committed Jan 27, 2025
1 parent 0ec45db commit 16fc19f
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ jobs:
cdxgen_version: ${{ env.CDXGEN_VERSION }}
cdxgen_plugins_version: ${{ env.CDXGEN_PLUGINS_VERSION }}

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: "8.12.1"

- name: Application Build and Test
env:
sem_ver: ${{ steps.semantic.outputs.new_release_version }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ jobs:
cdxgen_repo: ${{ env.cdxgen_repo }}
cdxgen_branch: ${{ env.cdxgen_branch }}

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: "8.12.1"

- name: Application Build and Test with cdxgen branch ${{ env.cdxgen_branch }}
env:
QUARKUS_GITHUB_APP_APP_ID: 32168
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ src/test/**/report.txt
src/test/**/.gradle/**
reports/depscan*
reports/*.report
reports/problems/problems-report.html
10 changes: 5 additions & 5 deletions src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ ARG NYDUS_VERSION
ARG DEPSCAN_VERSION

# sdkman provided jdks
ARG JAVA_17_VERSION='17.0.12-tem'
ARG JAVA_21_VERSION='21.0.4-tem'
ARG JAVA_23_VERSION='23-tem'
ARG GRADLE_VERSION='8.10.1'
ARG JAVA_17_VERSION='17.0.13-tem'
ARG JAVA_21_VERSION='21.0.6-tem'
ARG JAVA_23_VERSION='23.0.2-tem'
ARG GRADLE_VERSION='8.12.1'
ARG NODE_VERSION='21'
ARG GO_VERSION='1.23.1'
ARG GO_VERSION='1.23.4'
ARG MAVEN_VERSION='3.9.9'

# location of application binaries and configuration
Expand Down
3 changes: 1 addition & 2 deletions src/test/resources/repo/multi-gradle-module/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ plugins {
kotlin("jvm") version "1.8.21" apply false
kotlin("plugin.serialization") version "1.8.21" apply false
id("com.jfrog.artifactory") version "4.31.9" apply false
id("com.github.johnrengelman.shadow") version "7.1.2" apply false
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
id("io.gitlab.arturbosch.detekt") version "1.22.0"
id("com.palantir.docker") version "0.35.0" apply false
id("org.openapi.generator") version "6.6.0" apply false
id("com.google.protobuf") version "0.9.3" apply false
id("com.github.node-gradle.node") version "5.0.0" apply false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ plugins {
id("com.jfrog.artifactory")
id("com.github.johnrengelman.shadow")
id("io.gitlab.arturbosch.detekt")
id("com.palantir.docker")
id("org.openapi.generator")
id("org.sonarqube") version "4.0.0.2929"
id("com.google.protobuf")
Expand Down

0 comments on commit 16fc19f

Please sign in to comment.