Skip to content

Commit 3b22ad9

Browse files
committed
Merge remote-tracking branch 'origin/main' into dependabot/npm_and_yarn/fortawesome/fontawesome-free-6.7.2
# Conflicts: # pom.xml
2 parents d01e2aa + fcb1a05 commit 3b22ad9

File tree

5 files changed

+55
-8
lines changed

5 files changed

+55
-8
lines changed

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Generate coverage with JaCoCo
3434
run: mvn -V --color always -ntp clean verify -Pci
3535
- name: Upload coverage to Codecov
36-
uses: codecov/codecov-action@v5.0.7
36+
uses: codecov/codecov-action@v5.3.1
3737
with:
3838
file: 'target/site/jacoco/jacoco.xml'
3939
disable_search: true

.github/workflows/quality-monitor.yml

+45-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ jobs:
1010
name: Build, test and monitor quality on Ubuntu
1111

1212
steps:
13+
- uses: actions/checkout@v4
14+
if: github.event_name == 'push'
1315
- uses: actions/checkout@v4
1416
with:
15-
ref: "refs/pull/${{ github.event.number }}/merge"
17+
ref: "${{ github.event.pull_request.merge_commit_sha }}"
18+
if: github.event_name == 'pull_request_target'
1619
- name: Set up JDK 21
1720
uses: actions/setup-java@v4
1821
with:
@@ -24,10 +27,16 @@ jobs:
2427
uses: stCarolas/setup-maven@v5
2528
with:
2629
maven-version: 3.9.9
30+
- name: Cache the NVD database
31+
uses: actions/cache@v4
32+
with:
33+
path: ~/.m2/repository/org/owasp/dependency-check-data
34+
key: dependency-check
2735
- name: Build with Maven
2836
env:
2937
BROWSER: chrome-container
30-
run: mvn -V --color always -ntp clean verify -Ppit -Pci | tee maven.log
38+
NVD_API_KEY: ${{ secrets.NVD_API_KEY }}
39+
run: mvn -V --color always -ntp clean verify -Ppit -Pci -Powasp | tee maven.log
3140
- name: Extract pull request number
3241
uses: jwalton/gh-find-current-pr@v1
3342
id: pr
@@ -72,6 +81,21 @@ jobs:
7281
"id": "spotbugs",
7382
"sourcePath": "src/main/java",
7483
"pattern": "**/target/spotbugsXml.xml"
84+
},
85+
{
86+
"id": "error-prone",
87+
"pattern": "**/maven.log"
88+
}
89+
]
90+
},
91+
{
92+
"name": "Vulnerabilities",
93+
"id": "vulnerabilities",
94+
"icon": "shield",
95+
"tools": [
96+
{
97+
"id": "owasp-dependency-check",
98+
"pattern": "**/target/dependency-check-report.json"
7599
}
76100
]
77101
}
@@ -95,6 +119,25 @@ jobs:
95119
"pattern": "**/target/site/jacoco/jacoco.xml"
96120
}
97121
]
122+
},
123+
{
124+
"name": "Mutation Coverage",
125+
"tools": [
126+
{
127+
"id": "pit",
128+
"name": "Mutation Coverage",
129+
"metric": "mutation",
130+
"sourcePath": "src/main/java",
131+
"pattern": "**/target/pit-reports/mutations.xml"
132+
},
133+
{
134+
"id": "pit",
135+
"name": "Test Strength",
136+
"metric": "test-strength",
137+
"sourcePath": "src/main/java",
138+
"pattern": "**/target/pit-reports/mutations.xml"
139+
}
140+
]
98141
}
99142
],
100143
"metrics":

.github/workflows/run-release-drafter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
name: 'Update Release Draft'
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: release-drafter/release-drafter@v6.0.0
14+
- uses: release-drafter/release-drafter@v6.1.0
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
},
1111
"devDependencies": {
1212
"remark-cli": "12.0.1",
13-
"remark-lint": "10.0.0",
14-
"remark-preset-lint-recommended": "7.0.0"
13+
"remark-lint": "10.0.1",
14+
"remark-preset-lint-recommended": "7.0.1"
1515
},
1616
"scripts": {
1717
"lint-md": "remark .",

pom.xml

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.jvnet.hudson.plugins</groupId>
66
<artifactId>analysis-pom</artifactId>
7-
<version>10.0.0</version>
7+
<version>10.4.0</version>
88
<relativePath />
99
</parent>
1010

@@ -22,7 +22,7 @@
2222
<changelist>-SNAPSHOT</changelist>
2323

2424
<module.name>${project.groupId}.font-awesome-api</module.name>
25-
<testcontainers.version>1.20.3</testcontainers.version>
25+
<testcontainers.version>1.20.4</testcontainers.version>
2626

2727
</properties>
2828

@@ -45,10 +45,14 @@
4545
<dependency>
4646
<groupId>io.jenkins.plugins</groupId>
4747
<artifactId>plugin-util-api</artifactId>
48+
<!-- TODO: remove the version when a matching BOM is available -->
49+
<version>6.0.0</version>
4850
</dependency>
4951
<dependency>
5052
<groupId>io.jenkins.plugins</groupId>
5153
<artifactId>plugin-util-api</artifactId>
54+
<!-- TODO: remove the version when a matching BOM is available -->
55+
<version>6.0.0</version>
5256
<classifier>tests</classifier>
5357
<scope>test</scope>
5458
</dependency>

0 commit comments

Comments
 (0)