Skip to content

Commit 2abe53d

Browse files
committed
Merge remote-tracking branch 'upstream/master' into tooltip-enter-delay
2 parents 2c0c426 + c01b2c4 commit 2abe53d

File tree

237 files changed

+2944
-3296
lines changed

Some content is hidden

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

237 files changed

+2944
-3296
lines changed

.github/workflows/announce-lts-rc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
jobs:
88
post:
99
runs-on: ubuntu-latest
10+
if: ${{ github.repository_owner == 'jenkinsci' }}
1011
steps:
1112
- name: Post on Discourse
1213
uses: roots/discourse-topic-github-release-action@c30dc233349b7c6f24f52fb1c659cc64f13b5474 # v1.0.1

.github/workflows/changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
pull-requests: write # to add label to PR (release-drafter/release-drafter)
1919
contents: write # to create a github release (release-drafter/release-drafter)
2020

21-
if: github.repository_owner == 'jenkinsci'
21+
if: ${{ github.repository_owner == 'jenkinsci' }}
2222
runs-on: ubuntu-latest
2323
steps:
2424
# Drafts your next Release notes as Pull Requests are merged into "master"
@@ -54,7 +54,7 @@ jobs:
5454
repositories: >-
5555
["jenkins.io"]
5656
- name: Check out
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
with:
5959
fetch-depth: 0
6060
- name: Publish jenkins.io changelog draft

.github/workflows/label-conflicting-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
main:
12-
if: github.event.pull_request.user.login != 'dependabot[bot]'
12+
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' && github.repository_owner == 'jenkinsci' }}
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Label conflicting PRs

.github/workflows/label-lts-prs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Check if PR targets LTS branch
1313
if: startsWith(github.event.pull_request.base.ref, 'stable-')
14-
uses: actions/github-script@v7
14+
uses: actions/github-script@v8
1515
with:
1616
github-token: ${{ secrets.GITHUB_TOKEN }}
1717
script: |

.github/workflows/publish-release-artifact.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,19 @@ permissions:
99

1010
jobs:
1111
determine-version:
12+
if: ${{ github.repository_owner == 'jenkinsci' }}
1213
runs-on: ubuntu-latest
1314
outputs:
1415
project-version: ${{ steps.set-version.outputs.project-version }}
1516
is-lts: ${{ steps.set-version.outputs.is-lts }}
1617
is-rc: ${{ steps.set-version.outputs.is-rc }}
1718
steps:
18-
- uses: actions/checkout@v4
19-
- name: Set up JDK 17
20-
uses: actions/setup-java@v4
19+
- uses: actions/checkout@v5
20+
- name: Set up JDK 21
21+
uses: actions/setup-java@v5
2122
with:
2223
distribution: "temurin"
23-
java-version: 17
24+
java-version: 21
2425
cache: "maven"
2526
- name: Set version
2627
id: set-version
@@ -73,7 +74,7 @@ jobs:
7374
wget -q https://get.jenkins.io/${REPO}/${PROJECT_VERSION}/${FILE_NAME}
7475
- name: Upload Release Asset
7576
id: upload-war
76-
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
77+
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2.3.3
7778
env:
7879
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7980
with:
@@ -108,7 +109,7 @@ jobs:
108109
- name: Upload Release Asset
109110
id: upload-deb
110111
if: always()
111-
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
112+
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2.3.3
112113
env:
113114
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
114115
with:
@@ -144,7 +145,7 @@ jobs:
144145
- name: Upload Release Asset
145146
id: upload-rpm
146147
if: always()
147-
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
148+
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2.3.3
148149
env:
149150
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
150151
with:
@@ -180,7 +181,7 @@ jobs:
180181
- name: Upload Release Asset
181182
id: upload-msi
182183
if: always()
183-
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
184+
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2.3.3
184185
env:
185186
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
186187
with:
@@ -216,7 +217,7 @@ jobs:
216217
- name: Upload Release Asset
217218
id: upload-suse-rpm
218219
if: always()
219-
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
220+
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2.3.3
220221
env:
221222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
222223
with:

.github/workflows/require-changelog-label.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- "master"
77
jobs:
88
label:
9+
if: ${{ github.repository_owner == 'jenkinsci' }}
910
runs-on: ubuntu-latest
1011
permissions:
1112
issues: write

.github/workflows/run-since-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
if: ${{ github.repository_owner == 'jenkinsci' }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020
- name: Run update-since-todo.py

.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.10</version>
5+
<version>1.13</version>
66
</extension>
77
</extensions>

CITATION.cff

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
cff-version: 1.2.0
2+
title: "Jenkins"
3+
type: software
4+
repository-code: "https://github.com/jenkinsci/jenkins"
5+
url: "https://jenkins.io/"
6+
authors:
7+
- name: "Jenkins contributors"
8+
affiliation: "Jenkins project"
9+
abstract: >-
10+
In a nutshell, Jenkins is the leading open-source automation server.
11+
Built with Java, it provides over 2,000 plugins to support automating virtually anything,
12+
so that humans can spend their time doing things machines cannot.
13+
keywords:
14+
- jenkins
15+
- continuous-integration
16+
- continuous-delivery
17+
- pipelines
18+
- automation
19+
license: MIT

ath.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -o xtrace
66
cd "$(dirname "$0")"
77

88
# https://github.com/jenkinsci/acceptance-test-harness/releases
9-
export ATH_VERSION=6319.v9da_e005f2fd2
9+
export ATH_VERSION=6361.vcb_036a_7ffb_a_5
1010

1111
if [[ $# -eq 0 ]]; then
1212
export JDK=17

0 commit comments

Comments
 (0)