ACS-5371 Exclude xpp3 dependency to avoid conflict in JDK9+ #6343
ci.yml
on: pull_request
Source Clear Scan (SCA)
4m 10s
Pipeline SAST Scan
6m 56s
PMD Scan
4m 9s
Repository - MariaDB 10.6 tests
10m 49s
Repository - MySQL 8 tests
15m 19s
Repository - PostgreSQL 13.12 tests
0s
Repository - PostgreSQL 14.9 tests
0s
Repository - PostgreSQL 15.4 tests
21m 22s
Repository - Messaging tests
1m 59s
Share Services - ShareServicesTestSuite
2m 54s
AGS Community Rest API Tests
11m 58s
Test Tomcat deployment of api explorer
3m 59s
Matrix: ags_mysql_tests
Matrix: ags_postgresql_tests
Matrix: all_unit_tests_suite
Matrix: remote_api_app_context_test_suites
Matrix: repository_app_context_test_suites
Matrix: repository_mariadb_tests
Matrix: tas_tests
Annotations
87 errors
Repository - SearchTestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - SearchTestSuite
Process completed with exit code 1.
|
Share Services - ShareServicesTestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Share Services - ShareServicesTestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - AppContext02TestSuite
Process completed with exit code 1.
|
Repository - AppContext02TestSuite
Process completed with exit code 1.
|
Repository - MiscContextTestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - MiscContextTestSuite
Process completed with exit code 1.
|
Repository - MTLSTestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - MTLSTestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Remote-api - AppContext02TestSuite
Process completed with exit code 1.
|
Remote-api - AppContext02TestSuite
Process completed with exit code 1.
|
Remote-api - AppContext03TestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Remote-api - AppContext03TestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - AppContext06TestSuite
Process completed with exit code 1.
|
Repository - AppContext06TestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Remote-api - AppContext01TestSuite
Process completed with exit code 1.
|
Remote-api - AppContext01TestSuite
Process completed with exit code 1.
|
Remote-api - AppContextExtraTestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Remote-api - AppContextExtraTestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - AppContext01TestSuite
Process completed with exit code 1.
|
Repository - AppContext01TestSuite
Process completed with exit code 1.
|
Pipeline SAST Scan
[22 Nov 2024 14:58:00,0824] PIPELINE-SCAN INFO: Pipeline Scan Tool Version 24.10.0-0.
[22 Nov 2024 14:58:00,0843] PIPELINE-SCAN INFO: Loading policy file Alfresco_Default.json
[22 Nov 2024 14:58:00,0845] PIPELINE-SCAN INFO: Successfully retrieved the policy
[22 Nov 2024 14:58:00,0845] PIPELINE-SCAN INFO: Policy name: Alfresco Default
[22 Nov 2024 14:58:00,0846] PIPELINE-SCAN INFO: CWE filter:
[22 Nov 2024 14:58:00,0846] PIPELINE-SCAN INFO: Severity filter: 3, 4, 5,
[22 Nov 2024 14:58:00,0847] PIPELINE-SCAN INFO: Beginning scanning of 'packaging/war/target/alfresco.war'.
[22 Nov 2024 14:58:00,0850] PIPELINE-SCAN INFO: Sending 137299839 bytes to the server for analysis.
[22 Nov 2024 14:58:48,0512] PIPELINE-SCAN INFO: Upload complete.
[22 Nov 2024 14:58:48,0512] PIPELINE-SCAN INFO: Scan ID: 68ab2759-52d4-4cf7-b236-cf03258baf37
[22 Nov 2024 14:58:48,0791] PIPELINE-SCAN INFO: Analysis Started.
===========================
Found 2 Scannable modules.
===========================
alfresco.war
JS files within alfresco.war
[22 Nov 2024 15:02:10,0596] PIPELINE-SCAN INFO: Analysis Complete.
[22 Nov 2024 15:02:10,0598] PIPELINE-SCAN INFO: Analysis Results: Received 11222 bytes in 249751ms.
[22 Nov 2024 15:02:10,0601] PIPELINE-SCAN INFO: Writing Raw JSON Results to file '/home/runner/work/alfresco-community-repo/alfresco-community-repo/results.json'.
[22 Nov 2024 15:02:10,0604] PIPELINE-SCAN INFO: Applying custom severity 4 to cwe 80
[22 Nov 2024 15:02:10,0607] PIPELINE-SCAN INFO: Writing Filtered JSON Results to file '/home/runner/work/alfresco-community-repo/alfresco-community-repo/filtered_results.json'.
Scan Summary:
PIPELINE_SCAN_VERSION: 24.10.0-0
DEV-STAGE: DEVELOPMENT
PROJECT-NAME: alfresco-community-repo
SCAN_ID: 68ab2759-52d4-4cf7-b236-cf03258baf37
SCAN_STATUS: SUCCESS
SCAN_MESSAGE: Scan successful. Results size: 10760 bytes
====================
Analysis Successful.
====================
==========================
Found 2 Scannable modules.
==========================
alfresco.war
JS files within alfresco.war
===================
Analyzed 2 modules.
===================
alfresco.war
JS files within alfresco.war
==================
Analyzed 5 issues.
==================
--------------------------------
Found 1 issues of High severity.
--------------------------------
CWE-80: Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS): org/springframework/security/spring-security-webauthn.js:199
Details: <span>This call to href() contains a cross-site scripting (XSS) flaw. The application populates the HTTP response with untrusted input, allowing an attacker to embed malicious content, such as Javascript code, which will be executed in the context of the victim's browser. XSS vulnerabilities are commonly exploited to steal or manipulate cookies, modify presentation of content, and compromise confidential information, with new attack vectors being discovered on a regular basis. </span> <span>Use contextual escaping on all untrusted data before using it to construct any portion of an HTTP response. The escaping method should be chosen based on the specific use case of the untrusted data, otherwise it may not protect fully against the attack. For example, if the data is being written to the body of an HTML page, use HTML entity escaping; if the data is being written to an attribute, use attribute escaping; etc. Both the OWASP Java Encoder library and the Microsoft AntiXSS library provide contextual escaping methods. For more details on contextual escaping, see https://github.com/OWASP/CheatSheetSeries/blob/master/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.md. In addition, as a best practice, always validate untrusted input to ensure that it conforms to the expected format, using centralized data validation routines when possible.</span> <span>References: <a href="https://cwe.mitre.org/data/definitions/79.html">CWE</a> <a href="https://owasp.org/www-community/attacks/xss/">OWASP</a> <a href="https://docs.veracode.com/r/review_cleansers">Supported Cleansers</a></span>
https://downl
|
AGS Integration Tests 04 (MySQL)
Process completed with exit code 1.
|
AGS Integration Tests 03 (PostgreSQL)
Process completed with exit code 1.
|
AGS Integration Tests 04 (PostgreSQL)
Process completed with exit code 1.
|
AGS Integration Tests 03 (MySQL)
Process completed with exit code 1.
|
REST API TAS tests part2
org/quartz/DisallowConcurrentExecution
|
REST API TAS tests part2
Process completed with exit code 1.
|
REST API TAS tests part1
org/quartz/DisallowConcurrentExecution
|
REST API TAS tests part1
Process completed with exit code 1.
|
WebDAV TAS tests
org/quartz/DisallowConcurrentExecution
|
WebDAV TAS tests
Process completed with exit code 1.
|
REST API TAS tests part3
org/quartz/DisallowConcurrentExecution
|
REST API TAS tests part3
Process completed with exit code 1.
|
CMIS TAS tests - WEBSERVICES binding
org/quartz/DisallowConcurrentExecution
|
CMIS TAS tests - WEBSERVICES binding
Process completed with exit code 1.
|
CMIS TAS tests - BROWSER binding
org/quartz/ExecuteInJTATransaction
|
CMIS TAS tests - BROWSER binding
Process completed with exit code 1.
|
Repository - MariaDB 10.6 tests
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - MariaDB 10.6 tests
Process completed with exit code 1.
|
Integration TAS tests
org/quartz/DisallowConcurrentExecution
|
Integration TAS tests
Process completed with exit code 1.
|
Email TAS tests
org/quartz/DisallowConcurrentExecution
|
Email TAS tests
Process completed with exit code 1.
|
CMIS TAS tests - ATOM binding
org/quartz/DisallowConcurrentExecution
|
CMIS TAS tests - ATOM binding
Process completed with exit code 1.
|
AGS Community Rest API Tests
org/quartz/DisallowConcurrentExecution
|
AGS Community Rest API Tests
Process completed with exit code 1.
|
AGS Community Rest API Tests
org/quartz/DisallowConcurrentExecution
|
AGS Community Rest API Tests
Process completed with exit code 255.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - MySQL 8 tests
Process completed with exit code 1.
|
Repository - MySQL 8 tests
Process completed with exit code 1.
|
Repository - PostgreSQL 15.4 tests
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - PostgreSQL 15.4 tests
Process completed with exit code 1.
|
AGS Integration Tests 01 (PostgreSQL)
Java heap space
|
AGS Integration Tests 01 (PostgreSQL)
Java heap space
|
AGS Integration Tests 01 (PostgreSQL)
Process completed with exit code 1.
|
Remote-api - AppContext04TestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Remote-api - AppContext04TestSuite
Process completed with exit code 1.
|
AGS Integration Tests 01 (MySQL)
Java heap space
|
AGS Integration Tests 01 (MySQL)
Process completed with exit code 1.
|
AGS Integration Tests 02 (PostgreSQL)
Process completed with exit code 1.
|
AGS Integration Tests 02 (MySQL)
The action 'Verify' has timed out after 60 minutes.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - AppContext04TestSuite
Process completed with exit code 1.
|
Repository - AppContext04TestSuite
Process completed with exit code 1.
|
Repository - AppContextExtraTestSuite
Process completed with exit code 1.
|
run-tests
Tests failed: re-throwing on error.
|
Repository - AppContextExtraTestSuite
Process completed with exit code 1.
|
Repository - AppContext03TestSuite
The job running on runner GitHub Actions 421 has exceeded the maximum execution time of 360 minutes.
|
Repository - AppContext03TestSuite
The operation was canceled.
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
Veracode Pipeline-Scan Results
|
3.54 KB |
|
Veracode Pipeline-Scan Results (Human Readable)
|
1.83 KB |
|