Skip to content

Commit cebfa7a

Browse files
authored
Merge branch 'jenkinsci:master' into add-token-auth-support
2 parents 6d57674 + ee46778 commit cebfa7a

File tree

253 files changed

+5715
-4282
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

253 files changed

+5715
-4282
lines changed

.gitattributes

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
*.adoc text eol=lf
2+
*.config text eol=lf
3+
*.css text eol=lf
4+
*.groovy text eol=lf
5+
*.html text eol=lf
6+
*.java text eol=lf
7+
*.jelly text eol=lf
8+
*.js text eol=lf
9+
*.ls-remote text eol=lf
10+
*.properties text eol=lf
11+
*.pub text eol=lf
12+
*.sh text eol=lf
13+
*.txt text eol=lf
14+
*.xml text eol=lf
15+
*.yaml text eol=lf
16+
*.yml text eol=lf

.github/dependabot.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ updates:
55
# Maintain dependencies for maven
66
- package-ecosystem: "maven"
77
directory: "/"
8-
ignore:
9-
# Fails plugin bill of materials tests
10-
- dependency-name: "org.jenkins-ci.plugins:promoted-builds"
118
schedule:
129
interval: "weekly"
1310
labels:

.github/pull_request_template.md

Lines changed: 0 additions & 33 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Jenkins Security Scan
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
types: [ opened, synchronize, reopened ]
9+
workflow_dispatch:
10+
11+
permissions:
12+
security-events: write
13+
contents: read
14+
actions: read
15+
16+
jobs:
17+
security-scan:
18+
uses: jenkins-infra/jenkins-security-scan/.github/workflows/jenkins-security-scan.yaml@v2
19+
with:
20+
java-cache: 'maven' # Optionally enable use of a build dependency cache. Specify 'maven' or 'gradle' as appropriate.
21+
# java-version: 21 # Optionally specify what version of Java to set up for the build, or remove to use a recent default.

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ jobs:
66
triage:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/labeler@v5
9+
- uses: actions/labeler@v6
1010
with:
1111
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<extension>
33
<groupId>io.jenkins.tools.incrementals</groupId>
44
<artifactId>git-changelist-maven-extension</artifactId>
5-
<version>1.7</version>
5+
<version>1.13</version>
66
</extension>
77
</extensions>

Jenkinsfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
*/
55
buildPlugin(
66
forkCount: '1C', // Run a JVM per core in tests
7-
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
7+
// we use Docker for containerized tests
8+
useContainerAgent: false,
89
configurations: [
9-
[platform: 'linux', jdk: 21],
10-
[platform: 'windows', jdk: 17],
10+
[platform: 'linux', jdk: 25],
11+
[platform: 'windows', jdk: 21],
1112
])

0 commit comments

Comments
 (0)