Skip to content

Commit 51df3bb

Browse files
committed
Merge remote-tracking branch 'apache/master' into feat/slsa
2 parents 595fbdc + d4d090c commit 51df3bb

6 files changed

Lines changed: 21 additions & 14 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5050
with:
5151
persist-credentials: false
52-
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 #v5.0.4
52+
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae #v5.0.5
5353
with:
5454
path: ~/.m2/repository
5555
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -58,7 +58,7 @@ jobs:
5858
5959
# Initializes the CodeQL tools for scanning.
6060
- name: Initialize CodeQL
61-
uses: github/codeql-action/init@38697555549f1db7851b81482ff19f1fa5c4fedc # v4.34.1
61+
uses: github/codeql-action/init@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
6262
with:
6363
languages: ${{ matrix.language }}
6464
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -69,7 +69,7 @@ jobs:
6969
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
7070
# If this step fails, then you should remove it and run the build manually (see below)
7171
- name: Autobuild
72-
uses: github/codeql-action/autobuild@38697555549f1db7851b81482ff19f1fa5c4fedc # v4.34.1
72+
uses: github/codeql-action/autobuild@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
7373

7474
# ℹ️ Command-line programs to run using the OS shell.
7575
# 📚 https://git.io/JvXDl
@@ -83,4 +83,4 @@ jobs:
8383
# make release
8484

8585
- name: Perform CodeQL Analysis
86-
uses: github/codeql-action/analyze@38697555549f1db7851b81482ff19f1fa5c4fedc # v4.34.1
86+
uses: github/codeql-action/analyze@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
- name: 'Checkout Repository'
2929
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3030
- name: 'Dependency Review PR'
31-
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2
31+
uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # v4.9.0

.github/workflows/maven.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515

1616
name: Java CI
1717

18-
on: [push, pull_request]
18+
on:
19+
push:
20+
branches:
21+
- 'master'
22+
pull_request: {}
1923

2024
permissions:
2125
contents: read
@@ -38,7 +42,7 @@ jobs:
3842
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3943
with:
4044
persist-credentials: false
41-
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 #v5.0.4
45+
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae #v5.0.5
4246
with:
4347
path: ~/.m2/repository
4448
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/scorecards-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ jobs:
5757
publish_results: true
5858

5959
- name: "Upload artifact"
60-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
60+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6161
with:
6262
name: SARIF file
6363
path: results.sarif
6464
retention-days: 5
6565

6666
- name: "Upload to code-scanning"
67-
uses: github/codeql-action/upload-sarif@38697555549f1db7851b81482ff19f1fa5c4fedc # v4.34.1
67+
uses: github/codeql-action/upload-sarif@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
6868
with:
6969
sarif_file: results.sarif

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.commons</groupId>
2424
<artifactId>commons-parent</artifactId>
25-
<version>97</version>
25+
<version>98</version>
2626
</parent>
2727
<artifactId>commons-release-plugin</artifactId>
2828
<packaging>maven-plugin</packaging>
@@ -70,7 +70,7 @@
7070
<maven.compiler.target>1.8</maven.compiler.target>
7171
<!-- 3.8.2 fails with some class not found error -->
7272
<!-- 3.8.3 fails because MavenProject.getAttachedArtifacts() returns an IMMUTABLE collection and we want to change it! -->
73-
<maven.dependency.version>3.9.12</maven.dependency.version>
73+
<maven.dependency.version>3.9.14</maven.dependency.version>
7474
<commons.componentid>release-plugin</commons.componentid>
7575
<commons.dist.subdir>release-plugin</commons.dist.subdir>
7676
<commons.jira.id>COMMONSSITE</commons.jira.id>
@@ -223,7 +223,7 @@
223223
<dependency>
224224
<groupId>org.apache.maven.plugin-testing</groupId>
225225
<artifactId>maven-plugin-testing-harness</artifactId>
226-
<version>3.4.0</version>
226+
<version>3.5.1</version>
227227
<scope>test</scope>
228228
</dependency>
229229
<dependency>
@@ -510,7 +510,7 @@
510510
<plugin>
511511
<groupId>org.codehaus.mojo</groupId>
512512
<artifactId>jdepend-maven-plugin</artifactId>
513-
<version>2.1</version>
513+
<version>2.2.0</version>
514514
<reportSets>
515515
<reportSet/>
516516
</reportSets>

src/changes/changes.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,11 @@
2828
<!-- FIX -->
2929
<!-- ADD -->
3030
<!-- UPDATE -->
31-
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 96 to 97.</action>
31+
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 96 to 98.</action>
3232
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump commons-codec:commons-codec from 1.20.0 to 1.21.0.</action>
33+
<action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness from 3.4.0 to 3.5.1 #426.</action>
34+
<action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump maven.dependency.version from 3.9.12 to 3.9.14 #424.</action>
35+
<action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump org.codehaus.mojo:jdepend-maven-plugin from 2.1 to 2.2.0 #425.</action>
3336
</release>
3437
<release version="1.9.2" date="2026-01-25" description="This is a feature and maintenance release. Java 8 or later is required.">
3538
<!-- FIX -->

0 commit comments

Comments
 (0)