Skip to content

Commit aa27341

Browse files
committed
chore(deps): update all non-major dependencies
1 parent 6e4fb68 commit aa27341

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL
49-
uses: github/codeql-action/init@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
49+
uses: github/codeql-action/init@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
5050
with:
5151
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
5252
languages: java
@@ -66,6 +66,6 @@ jobs:
6666
(cd function-maven-plugin && mvn install)
6767
6868
- name: Perform CodeQL Analysis
69-
uses: github/codeql-action/analyze@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
69+
uses: github/codeql-action/analyze@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
7070
with:
7171
category: ${{ matrix.working-directory }}

.github/workflows/conformance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3434

3535
- name: Set up JDK ${{ matrix.java }}
36-
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
36+
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
3737
with:
3838
java-version: ${{ matrix.java }}
3939
distribution: temurin

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
repo.maven.apache.org:443
2323
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2424
- name: Set up JDK
25-
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
25+
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
2626
with:
2727
java-version: 11.x
2828
distribution: temurin

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ jobs:
6161

6262
# Upload the results to GitHub's code scanning dashboard.
6363
- name: "Upload to code-scanning"
64-
uses: github/codeql-action/upload-sarif@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
64+
uses: github/codeql-action/upload-sarif@c7f9125735019aa87cfc361530512d50ea439c71 # v3.25.1
6565
with:
6666
sarif_file: results.sarif

.github/workflows/unit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
*.githubusercontent.com:443
3131
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3232
- name: Set up JDK ${{ matrix.java }}
33-
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
33+
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
3434
with:
3535
java-version: ${{ matrix.java }}
3636
distribution: temurin

function-maven-plugin/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>org.apache.maven.plugin-tools</groupId>
5353
<artifactId>maven-plugin-annotations</artifactId>
54-
<version>3.11.0</version>
54+
<version>3.12.0</version>
5555
<scope>provided</scope>
5656
</dependency>
5757

@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>com.google.truth</groupId>
7373
<artifactId>truth</artifactId>
74-
<version>1.4.0</version>
74+
<version>1.4.2</version>
7575
<scope>test</scope>
7676
</dependency>
7777
<dependency>
@@ -87,7 +87,7 @@
8787
<plugin>
8888
<groupId>org.apache.maven.plugins</groupId>
8989
<artifactId>maven-plugin-plugin</artifactId>
90-
<version>3.11.0</version>
90+
<version>3.12.0</version>
9191
<executions>
9292
<execution>
9393
<id>help-goal</id>
@@ -119,7 +119,7 @@
119119
<plugin>
120120
<groupId>org.apache.maven.plugins</groupId>
121121
<artifactId>maven-source-plugin</artifactId>
122-
<version>3.3.0</version>
122+
<version>3.3.1</version>
123123
<executions>
124124
<execution>
125125
<id>attach-sources</id>
@@ -145,7 +145,7 @@
145145
<plugin>
146146
<groupId>org.apache.maven.plugins</groupId>
147147
<artifactId>maven-gpg-plugin</artifactId>
148-
<version>3.1.0</version>
148+
<version>3.2.3</version>
149149
<executions>
150150
<execution>
151151
<id>sign-artifacts</id>

functions-framework-api/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<properties>
3030
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31-
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
31+
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
3232
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
3333
<junit.jupiter.version>5.3.2</junit.jupiter.version>
3434
</properties>
@@ -73,7 +73,7 @@
7373
<plugin>
7474
<groupId>org.apache.maven.plugins</groupId>
7575
<artifactId>maven-source-plugin</artifactId>
76-
<version>3.3.0</version>
76+
<version>3.3.1</version>
7777
<executions>
7878
<execution>
7979
<id>attach-sources</id>
@@ -177,7 +177,7 @@
177177
<plugin>
178178
<groupId>org.apache.maven.plugins</groupId>
179179
<artifactId>maven-gpg-plugin</artifactId>
180-
<version>3.1.0</version>
180+
<version>3.2.3</version>
181181
<executions>
182182
<execution>
183183
<id>sign-artifacts</id>

invoker/core/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@
9898
<dependency>
9999
<groupId>org.eclipse.jetty</groupId>
100100
<artifactId>jetty-servlet</artifactId>
101-
<version>9.4.53.v20231009</version>
101+
<version>9.4.54.v20240208</version>
102102
</dependency>
103103
<dependency>
104104
<groupId>org.eclipse.jetty</groupId>
105105
<artifactId>jetty-server</artifactId>
106-
<version>9.4.53.v20231009</version>
106+
<version>9.4.54.v20240208</version>
107107
</dependency>
108108
<dependency>
109109
<groupId>com.beust</groupId>
@@ -122,7 +122,7 @@
122122
<dependency>
123123
<groupId>org.mockito</groupId>
124124
<artifactId>mockito-core</artifactId>
125-
<version>5.10.0</version>
125+
<version>5.11.0</version>
126126
<scope>test</scope>
127127
</dependency>
128128
<dependency>
@@ -139,19 +139,19 @@
139139
<dependency>
140140
<groupId>com.google.truth</groupId>
141141
<artifactId>truth</artifactId>
142-
<version>1.4.0</version>
142+
<version>1.4.2</version>
143143
<scope>test</scope>
144144
</dependency>
145145
<dependency>
146146
<groupId>com.google.truth.extensions</groupId>
147147
<artifactId>truth-java8-extension</artifactId>
148-
<version>1.4.0</version>
148+
<version>1.4.2</version>
149149
<scope>test</scope>
150150
</dependency>
151151
<dependency>
152152
<groupId>org.eclipse.jetty</groupId>
153153
<artifactId>jetty-client</artifactId>
154-
<version>9.4.53.v20231009</version>
154+
<version>9.4.54.v20240208</version>
155155
<scope>test</scope>
156156
</dependency>
157157
</dependencies>
@@ -160,7 +160,7 @@
160160
<plugins>
161161
<plugin>
162162
<artifactId>maven-jar-plugin</artifactId>
163-
<version>3.3.0</version>
163+
<version>3.4.0</version>
164164
<configuration>
165165
<archive>
166166
<manifest>
@@ -174,7 +174,7 @@
174174
<plugin>
175175
<groupId>org.apache.maven.plugins</groupId>
176176
<artifactId>maven-shade-plugin</artifactId>
177-
<version>3.5.1</version>
177+
<version>3.5.2</version>
178178
<executions>
179179
<execution>
180180
<phase>package</phase>

invoker/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<plugin>
6868
<groupId>org.apache.maven.plugins</groupId>
6969
<artifactId>maven-source-plugin</artifactId>
70-
<version>3.3.0</version>
70+
<version>3.3.1</version>
7171
<executions>
7272
<execution>
7373
<id>attach-sources</id>
@@ -93,7 +93,7 @@
9393
<plugin>
9494
<groupId>org.apache.maven.plugins</groupId>
9595
<artifactId>maven-gpg-plugin</artifactId>
96-
<version>3.1.0</version>
96+
<version>3.2.3</version>
9797
<executions>
9898
<execution>
9999
<id>sign-artifacts</id>

invoker/testfunction/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<plugins>
4545
<plugin>
4646
<artifactId>maven-jar-plugin</artifactId>
47-
<version>3.3.0</version>
47+
<version>3.4.0</version>
4848
<configuration>
4949
<archive>
5050
<manifest>

0 commit comments

Comments
 (0)