Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,14 @@ jobs:
# Force 0 exit code to allow SARIF file generation
# This will handover control about PR rejection to the GitHub side
max-allowed-issues: 2147483647
- name: Clean duplicates
run: |
jq '.runs |= unique_by({tool, invocations, results})' results.sarif > final-results.sarif
# Upload the SARIF file generated in the previous step
- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@main
with:
sarif_file: results.sarif
sarif_file: final-results.sarif

smoke-test:
name: Smoke Test
Expand Down
4 changes: 2 additions & 2 deletions g11n-ws/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//Copyright 2019-2024 VMware, Inc.
//Copyright 2019-2025 VMware, Inc.
//SPDX-License-Identifier: EPL-2.0

buildscript {
Expand Down Expand Up @@ -55,7 +55,7 @@ subprojects{

projectVersion = '0.0.1-SNAPSHOT'
springWebVersion='5.3.39'
tomcatVersion= '9.0.89'
tomcatVersion= '9.0.100'
httpclient='4.5.13'
jacksonVersion = '2.16.0'
sqliteVersion= '3.42.0.0'
Expand Down
Loading