Skip to content

Commit e729230

Browse files
authored
Bump org.jenkins-ci.plugins:plugin from 4.88 to 5.3 (#920)
Bump io.jenkins.tools.bom:bom-2.462.x from 3654.v237e4a_f2d8da_ to 3696.vb_b_4e2d1a_0542 Fix codeql script for work with plugin-pom 5.x
1 parent 3bf7402 commit e729230

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

.github/workflows/codeql.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches:
6+
- master
67
pull_request:
7-
branches: [ "master" ]
8+
branches:
9+
- master
810
schedule:
911
- cron: "28 16 * * 5"
1012

@@ -26,6 +28,18 @@ jobs:
2628
- name: Checkout
2729
uses: actions/checkout@v4
2830

31+
- name: Set up JDK 1.17
32+
uses: actions/setup-java@v4
33+
with:
34+
java-version: '17'
35+
distribution: 'temurin'
36+
cache: 'maven'
37+
38+
- name: Set up Maven
39+
uses: stCarolas/setup-maven@v5
40+
with:
41+
maven-version: 3.9.9
42+
2943
- name: Initialize CodeQL
3044
uses: github/codeql-action/init@v3
3145
with:

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jenkins-ci.plugins</groupId>
77
<artifactId>plugin</artifactId>
8-
<version>4.88</version>
8+
<version>5.3</version>
99
<relativePath />
1010
</parent>
1111

@@ -28,7 +28,8 @@
2828
<properties>
2929
<changelist>999999-SNAPSHOT</changelist>
3030
<gitHubRepo>jenkinsci/bitbucket-branch-source-plugin</gitHubRepo>
31-
<jenkins.version>2.462.3</jenkins.version>
31+
<jenkins.baseline>2.479</jenkins.baseline>
32+
<jenkins.version>${jenkins.baseline}.1</jenkins.version>
3233
<hpi.compatibleSinceVersion>2.0</hpi.compatibleSinceVersion>
3334
<useBeta>true</useBeta> <!-- Jenkins.MANAGE -->
3435
</properties>
@@ -63,8 +64,8 @@
6364
<dependencies>
6465
<dependency>
6566
<groupId>io.jenkins.tools.bom</groupId>
66-
<artifactId>bom-2.462.x</artifactId>
67-
<version>3654.v237e4a_f2d8da_</version>
67+
<artifactId>bom-${jenkins.baseline}.x</artifactId>
68+
<version>3696.vb_b_4e2d1a_0542</version>
6869
<scope>import</scope>
6970
<type>pom</type>
7071
</dependency>

0 commit comments

Comments
 (0)