Skip to content

Commit

Permalink
Synchronizing changes with the Jenkins CI repo
Browse files Browse the repository at this point in the history
  • Loading branch information
IBA-mainframe-dev committed Nov 8, 2024
1 parent d76d414 commit 090bfac
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 7 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/jenkins-security-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Jenkins Security Scan

on:
push:
branches:
- main
pull_request:
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: 21 # Optionally specify what version of Java to set up for the build, or remove to use a recent default.
21 changes: 14 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@

<groupId>io.jenkins.plugins</groupId>
<artifactId>zdevops</artifactId>
<version>${revision}${changelist}</version>
<version>${revision}.${changelist}</version>
<name>Zowe zDevOps</name>
<packaging>hpi</packaging>
<description>Zowe mainframe z/OS automation plugin, working through z/OSMF REST API and using Zowe Kotlin SDK</description>

<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>

<properties>
<revision>1.2.0-</revision>
<changelist>-SNAPSHOT</changelist>
<revision>1.1.1</revision>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.414.3</jenkins.version>
<java.version>17</java.version>
<kotlin.version>1.9.20</kotlin.version>
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
<sezpoz.version>1.13</sezpoz.version>
<okhttp3.version>4.10.0</okhttp3.version>
<zowekotlinsdk.version>0.5.0-rc.11</zowekotlinsdk.version>
<zowekotlinsdk.version>0.5.0</zowekotlinsdk.version>
<kotest.version>5.6.1</kotest.version>
<kotlin.code.style>official</kotlin.code.style>
<kotlin.compiler.jvmTarget>17</kotlin.compiler.jvmTarget>
Expand Down Expand Up @@ -335,7 +335,7 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.2</version>
<version>2.3</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -371,7 +371,13 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
<version>2.11.0</version>
</dependency>

<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.27.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -459,7 +465,8 @@
</repository>

<repository>
<id>zowe.jfrog.io</id>
<!-- Do not change the ID - ref. https://github.com/jenkins-infra/helpdesk/issues/3501 -->
<id>org.zowe.sdk</id>
<url>https://zowe.jfrog.io/artifactory/libs-release</url>
</repository>
</repositories>
Expand Down

0 comments on commit 090bfac

Please sign in to comment.