Skip to content

Commit

Permalink
Merge branch 'master' into move-forkCount-to-Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite authored Aug 15, 2024
2 parents b75c5af + 30780f6 commit f4b46c7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/jenkins-security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ on:
types: [ opened, synchronize, reopened ]
workflow_dispatch:

permissions:
security-events: write
contents: read
actions: read

jobs:
security-scan:
uses: jenkins-infra/jenkins-security-scan/.github/workflows/jenkins-security-scan.yaml@v2
with:
java-cache: 'maven' # Optionally enable use of a build dependency cache. Specify 'maven' or 'gradle' as appropriate.
java-version: 11 # What version of Java to set up for the build.
# java-version: 21 # Optionally specify what version of Java to set up for the build, or remove to use a recent default.
2 changes: 1 addition & 1 deletion .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<extension>
<groupId>io.jenkins.tools.incrementals</groupId>
<artifactId>git-changelist-maven-extension</artifactId>
<version>1.7</version>
<version>1.8</version>
</extension>
</extensions>
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
buildPlugin(useContainerAgent: true, forkCount: '1C', configurations: [
[platform: 'linux', jdk: '11'],
[platform: 'linux', jdk: '17'],
[platform: 'linux', jdk: 21],
[platform: 'linux', jdk: 17],
])
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.69</version>
<version>4.86</version>
</parent>

<artifactId>jobConfigHistory</artifactId>
Expand Down Expand Up @@ -52,7 +52,7 @@
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.387.x</artifactId>
<version>2198.v39c76fc308ca</version>
<version>2465.va_e76ed7b_3061</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand All @@ -77,7 +77,7 @@
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>maven-plugin</artifactId>
<version>3.22</version>
<version>3.23</version>
<optional>true</optional>
<exclusions>
<exclusion>
Expand Down

0 comments on commit f4b46c7

Please sign in to comment.