Skip to content

Commit d6396d1

Browse files
authored
chore(deps): update all non-major dependencies (#191)
1 parent 94ed3bf commit d6396d1

File tree

11 files changed

+54
-54
lines changed

11 files changed

+54
-54
lines changed

.github/workflows/codeql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ jobs:
2828

2929
steps:
3030
- name: Harden Runner
31-
uses: step-security/harden-runner@18bf8ad2ca49c14cbb28b91346d626ccfb00c518 # v2.1.0
31+
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
3232
with:
3333
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3434

3535
- name: Checkout repository
36-
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
36+
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
3737

3838
# Initializes the CodeQL tools for scanning.
3939
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2.2.4
40+
uses: github/codeql-action/init@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3
4141
with:
4242
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
4343
languages: java
@@ -51,12 +51,12 @@ jobs:
5151

5252
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5353
- name: Autobuild
54-
uses: github/codeql-action/autobuild@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2.2.4
54+
uses: github/codeql-action/autobuild@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3
5555
with:
5656
working-directory: ${{ matrix.working-directory }}
5757

5858

5959
- name: Perform CodeQL Analysis
60-
uses: github/codeql-action/analyze@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2.2.4
60+
uses: github/codeql-action/analyze@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3
6161
with:
6262
category: ${{ matrix.working-directory }}

.github/workflows/conformance.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
]
2121
steps:
2222
- name: Harden Runner
23-
uses: step-security/harden-runner@18bf8ad2ca49c14cbb28b91346d626ccfb00c518 # v2.1.0
23+
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
2424
with:
2525
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2626

@@ -44,7 +44,7 @@ jobs:
4444
run: (cd invoker/ && mvn install)
4545

4646
- name: Run HTTP conformance tests
47-
uses: GoogleCloudPlatform/functions-framework-conformance/action@c52662e612b2685a027b1c3e02224306517722fc # v1.6.0
47+
uses: GoogleCloudPlatform/functions-framework-conformance/action@1975792fb34ebbfa058d690666186d669d3a5977 # v1.8.0
4848
with:
4949
version: 'v1.6.0'
5050
functionType: 'http'
@@ -53,7 +53,7 @@ jobs:
5353
startDelay: 10
5454

5555
- name: Run background event conformance tests
56-
uses: GoogleCloudPlatform/functions-framework-conformance/action@c52662e612b2685a027b1c3e02224306517722fc # v1.6.0
56+
uses: GoogleCloudPlatform/functions-framework-conformance/action@1975792fb34ebbfa058d690666186d669d3a5977 # v1.8.0
5757
with:
5858
version: 'v1.6.0'
5959
functionType: 'legacyevent'
@@ -63,7 +63,7 @@ jobs:
6363
startDelay: 10
6464

6565
- name: Run cloudevent conformance tests
66-
uses: GoogleCloudPlatform/functions-framework-conformance/action@c52662e612b2685a027b1c3e02224306517722fc # v1.6.0
66+
uses: GoogleCloudPlatform/functions-framework-conformance/action@1975792fb34ebbfa058d690666186d669d3a5977 # v1.8.0
6767
with:
6868
version: 'v1.6.0'
6969
functionType: 'cloudevent'
@@ -73,7 +73,7 @@ jobs:
7373
startDelay: 10
7474

7575
- name: Run HTTP concurrency conformance tests
76-
uses: GoogleCloudPlatform/functions-framework-conformance/action@c52662e612b2685a027b1c3e02224306517722fc # v1.6.0
76+
uses: GoogleCloudPlatform/functions-framework-conformance/action@1975792fb34ebbfa058d690666186d669d3a5977 # v1.8.0
7777
with:
7878
version: 'v1.6.0'
7979
functionType: 'http'

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Harden Runner
16-
uses: step-security/harden-runner@18bf8ad2ca49c14cbb28b91346d626ccfb00c518 # v2.1.0
16+
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
1717
with:
1818
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
1919

@@ -35,11 +35,11 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Harden Runner
38-
uses: step-security/harden-runner@18bf8ad2ca49c14cbb28b91346d626ccfb00c518 # v2.1.0
38+
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
3939
with:
4040
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
4141

42-
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0 # v2 minimum required
42+
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 # v2 minimum required
4343
- name: Run formatter
4444
id: formatter
4545
uses: axel-op/googlejavaformat-action@dbff853fb823671ec5781365233bf86543b13215 # v3

.github/workflows/scorecard.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ jobs:
2525

2626
steps:
2727
- name: Harden Runner
28-
uses: step-security/harden-runner@18bf8ad2ca49c14cbb28b91346d626ccfb00c518 # v2.1.0
28+
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
2929
with:
3030
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3131

3232
- name: "Checkout code"
33-
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
33+
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
3434
with:
3535
persist-credentials: false
3636

3737
- name: "Run analysis"
38-
uses: ossf/scorecard-action@99c53751e09b9529366343771cc321ec74e9bd3d # v2.0.6
38+
uses: ossf/scorecard-action@80e868c13c90f172d68d1f4501dee99e2479f7af # v2.1.3
3939
with:
4040
results_file: results.sarif
4141
results_format: sarif
@@ -47,6 +47,6 @@ jobs:
4747

4848
# Upload the results to GitHub's code scanning dashboard.
4949
- name: "Upload to code-scanning"
50-
uses: github/codeql-action/upload-sarif@807578363a7869ca324a79039e6db9c843e0e100 # v2.1.27
50+
uses: github/codeql-action/upload-sarif@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # v2.3.3
5151
with:
5252
sarif_file: results.sarif

.github/workflows/unit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
]
1919
steps:
2020
- name: Harden Runner
21-
uses: step-security/harden-runner@18bf8ad2ca49c14cbb28b91346d626ccfb00c518 # v2.1.0
21+
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
2222
with:
2323
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2424

function-maven-plugin/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,43 +29,43 @@
2929
<dependency>
3030
<groupId>org.apache.maven</groupId>
3131
<artifactId>maven-plugin-api</artifactId>
32-
<version>3.6.3</version>
32+
<version>3.9.2</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>org.apache.maven</groupId>
3636
<artifactId>maven-core</artifactId>
37-
<version>3.6.3</version>
37+
<version>3.9.2</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>org.apache.maven.plugin-tools</groupId>
4141
<artifactId>maven-plugin-annotations</artifactId>
42-
<version>3.6.0</version>
42+
<version>3.9.0</version>
4343
<scope>provided</scope>
4444
</dependency>
4545

4646
<dependency>
4747
<groupId>com.google.cloud.functions.invoker</groupId>
4848
<artifactId>java-function-invoker</artifactId>
49-
<version>1.1.1</version>
49+
<version>1.2.1</version>
5050
</dependency>
5151

5252
<dependency>
5353
<groupId>com.google.cloud.tools</groupId>
5454
<artifactId>appengine-maven-plugin</artifactId>
55-
<version>2.4.1</version>
55+
<version>2.4.4</version>
5656
<type>jar</type>
5757
</dependency>
5858

5959
<dependency>
6060
<groupId>com.google.truth</groupId>
6161
<artifactId>truth</artifactId>
62-
<version>1.0.1</version>
62+
<version>1.1.3</version>
6363
<scope>test</scope>
6464
</dependency>
6565
<dependency>
6666
<groupId>junit</groupId>
6767
<artifactId>junit</artifactId>
68-
<version>4.13.1</version>
68+
<version>4.13.2</version>
6969
<scope>test</scope>
7070
</dependency>
7171
</dependencies>
@@ -75,7 +75,7 @@
7575
<plugin>
7676
<groupId>org.apache.maven.plugins</groupId>
7777
<artifactId>maven-plugin-plugin</artifactId>
78-
<version>3.6.0</version>
78+
<version>3.9.0</version>
7979
<executions>
8080
<execution>
8181
<id>help-goal</id>
@@ -120,7 +120,7 @@
120120
<plugin>
121121
<groupId>org.apache.maven.plugins</groupId>
122122
<artifactId>maven-javadoc-plugin</artifactId>
123-
<version>3.1.0</version>
123+
<version>3.5.0</version>
124124
<executions>
125125
<execution>
126126
<id>attach-javadocs</id>
@@ -133,7 +133,7 @@
133133
<plugin>
134134
<groupId>org.apache.maven.plugins</groupId>
135135
<artifactId>maven-gpg-plugin</artifactId>
136-
<version>3.0.1</version>
136+
<version>3.1.0</version>
137137
<executions>
138138
<execution>
139139
<id>sign-artifacts</id>

functions-framework-api/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030

3131
<properties>
3232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33-
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
34-
<maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version>
33+
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
34+
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
3535
<junit.jupiter.version>5.3.2</junit.jupiter.version>
3636
</properties>
3737

@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>io.cloudevents</groupId>
5656
<artifactId>cloudevents-api</artifactId>
57-
<version>2.0.0.RC2</version>
57+
<version>2.5.0</version>
5858
</dependency>
5959
</dependencies>
6060

@@ -179,7 +179,7 @@
179179
<plugin>
180180
<groupId>org.apache.maven.plugins</groupId>
181181
<artifactId>maven-gpg-plugin</artifactId>
182-
<version>3.0.1</version>
182+
<version>3.1.0</version>
183183
<executions>
184184
<execution>
185185
<id>sign-artifacts</id>

invoker/conformance/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@
3232
<dependency>
3333
<groupId>com.google.code.gson</groupId>
3434
<artifactId>gson</artifactId>
35-
<version>2.8.9</version>
35+
<version>2.10.1</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>io.cloudevents</groupId>
3939
<artifactId>cloudevents-core</artifactId>
40-
<version>2.2.0</version>
40+
<version>2.5.0</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>io.cloudevents</groupId>
4444
<artifactId>cloudevents-json-jackson</artifactId>
45-
<version>2.2.0</version>
45+
<version>2.5.0</version>
4646
</dependency>
4747
</dependencies>
4848

invoker/core/pom.xml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<junit.jupiter.version>5.3.2</junit.jupiter.version>
2323
<maven.compiler.source>11</maven.compiler.source>
2424
<maven.compiler.target>11</maven.compiler.target>
25-
<cloudevents.sdk.version>2.0.0.RC2</cloudevents.sdk.version>
25+
<cloudevents.sdk.version>2.5.0</cloudevents.sdk.version>
2626
</properties>
2727

2828
<licenses>
@@ -68,12 +68,12 @@
6868
<dependency>
6969
<groupId>com.google.code.gson</groupId>
7070
<artifactId>gson</artifactId>
71-
<version>2.8.9</version>
71+
<version>2.10.1</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>com.ryanharter.auto.value</groupId>
7575
<artifactId>auto-value-gson</artifactId>
76-
<version>1.3.0</version>
76+
<version>1.3.1</version>
7777
<scope>provided</scope>
7878
</dependency>
7979
<dependency>
@@ -85,19 +85,19 @@
8585
<dependency>
8686
<groupId>com.google.auto.value</groupId>
8787
<artifactId>auto-value</artifactId>
88-
<version>1.7</version>
88+
<version>1.10.1</version>
8989
<scope>provided</scope>
9090
</dependency>
9191
<dependency>
9292
<groupId>com.google.auto.value</groupId>
9393
<artifactId>auto-value-annotations</artifactId>
94-
<version>1.7</version>
94+
<version>1.10.1</version>
9595
<scope>provided</scope>
9696
</dependency>
9797
<dependency>
9898
<groupId>org.eclipse.jetty</groupId>
9999
<artifactId>jetty-servlet</artifactId>
100-
<version>9.4.49.v20220914</version>
100+
<version>9.4.51.v20230217</version>
101101
</dependency>
102102
<dependency>
103103
<groupId>org.eclipse.jetty</groupId>
@@ -121,36 +121,36 @@
121121
<dependency>
122122
<groupId>org.mockito</groupId>
123123
<artifactId>mockito-core</artifactId>
124-
<version>3.2.4</version>
124+
<version>3.12.4</version>
125125
<scope>test</scope>
126126
</dependency>
127127
<dependency>
128128
<groupId>junit</groupId>
129129
<artifactId>junit</artifactId>
130-
<version>4.13.1</version>
130+
<version>4.13.2</version>
131131
<scope>test</scope>
132132
</dependency>
133133
<dependency>
134134
<groupId>com.google.re2j</groupId>
135135
<artifactId>re2j</artifactId>
136-
<version>1.6</version>
136+
<version>1.7</version>
137137
</dependency>
138138
<dependency>
139139
<groupId>com.google.truth</groupId>
140140
<artifactId>truth</artifactId>
141-
<version>1.0.1</version>
141+
<version>1.1.3</version>
142142
<scope>test</scope>
143143
</dependency>
144144
<dependency>
145145
<groupId>com.google.truth.extensions</groupId>
146146
<artifactId>truth-java8-extension</artifactId>
147-
<version>1.0.1</version>
147+
<version>1.1.3</version>
148148
<scope>test</scope>
149149
</dependency>
150150
<dependency>
151151
<groupId>org.eclipse.jetty</groupId>
152152
<artifactId>jetty-client</artifactId>
153-
<version>9.4.26.v20200117</version>
153+
<version>9.4.51.v20230217</version>
154154
<scope>test</scope>
155155
</dependency>
156156
</dependencies>
@@ -159,7 +159,7 @@
159159
<plugins>
160160
<plugin>
161161
<artifactId>maven-jar-plugin</artifactId>
162-
<version>3.1.2</version>
162+
<version>3.3.0</version>
163163
<configuration>
164164
<archive>
165165
<manifest>
@@ -171,7 +171,7 @@
171171
<plugin>
172172
<groupId>org.apache.maven.plugins</groupId>
173173
<artifactId>maven-shade-plugin</artifactId>
174-
<version>3.2.1</version>
174+
<version>3.4.1</version>
175175
<executions>
176176
<execution>
177177
<phase>package</phase>

invoker/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<groupId>org.apache.maven.plugins</groupId>
8484
<artifactId>maven-javadoc-plugin</artifactId>
85-
<version>3.1.0</version>
85+
<version>3.5.0</version>
8686
<executions>
8787
<execution>
8888
<id>attach-javadocs</id>
@@ -95,7 +95,7 @@
9595
<plugin>
9696
<groupId>org.apache.maven.plugins</groupId>
9797
<artifactId>maven-gpg-plugin</artifactId>
98-
<version>3.0.1</version>
98+
<version>3.1.0</version>
9999
<executions>
100100
<execution>
101101
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)