Skip to content

Commit 8ae7d85

Browse files
renovate-botKenneth Rosario
andauthored
chore(deps): update all non-major dependencies (#228)
Co-authored-by: Kenneth Rosario <[email protected]>
1 parent 8ff9114 commit 8ae7d85

File tree

7 files changed

+37
-42
lines changed

7 files changed

+37
-42
lines changed

.github/workflows/codeql.yml

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

2929
steps:
3030
- name: Harden Runner
31-
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
31+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
3232
with:
3333
disable-sudo: true
3434
egress-policy: block
@@ -42,11 +42,11 @@ jobs:
4242
uploads.github.com:443
4343
4444
- name: Checkout repository
45-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
45+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
4646

4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL
49-
uses: github/codeql-action/init@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6
49+
uses: github/codeql-action/init@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
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@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6
69+
uses: github/codeql-action/analyze@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
7070
with:
7171
category: ${{ matrix.working-directory }}

.github/workflows/conformance.yaml

Lines changed: 10 additions & 15 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@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
23+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
2424
with:
2525
disable-sudo: true
2626
egress-policy: block
@@ -32,18 +32,18 @@ jobs:
3232
repo.maven.apache.org:443
3333
storage.googleapis.com:443
3434
35-
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
35+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
3636

3737
- name: Set up JDK ${{ matrix.java }}
38-
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
38+
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3.12.0
3939
with:
4040
java-version: ${{ matrix.java }}
4141
distribution: temurin
4242

4343
- name: Setup Go
44-
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
44+
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
4545
with:
46-
go-version: '1.16'
46+
go-version: '1.21'
4747

4848
- name: Build API with Maven
4949
run: (cd functions-framework-api/ && mvn install)
@@ -55,48 +55,43 @@ jobs:
5555
run: (cd function-maven-plugin/ && mvn install)
5656

5757
- name: Run HTTP conformance tests
58-
uses: GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.2
58+
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # main
5959
with:
60-
version: 'v1.8.2'
6160
functionType: 'http'
6261
useBuildpacks: false
6362
cmd: "'mvn -f invoker/conformance/pom.xml function:run -Drun.functionTarget=com.google.cloud.functions.conformance.HttpConformanceFunction'"
6463
startDelay: 10
6564

6665
- name: Run Typed conformance tests
67-
uses: GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.2
66+
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # main
6867
with:
69-
version: 'v1.8.2'
7068
functionType: 'http'
7169
declarativeType: 'typed'
7270
useBuildpacks: false
7371
cmd: "'mvn -f invoker/conformance/pom.xml function:run -Drun.functionTarget=com.google.cloud.functions.conformance.TypedConformanceFunction'"
7472
startDelay: 10
7573

7674
- name: Run background event conformance tests
77-
uses: GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.2
75+
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # main
7876
with:
79-
version: 'v1.8.2'
8077
functionType: 'legacyevent'
8178
useBuildpacks: false
8279
validateMapping: true
8380
cmd: "'mvn -f invoker/conformance/pom.xml function:run -Drun.functionTarget=com.google.cloud.functions.conformance.BackgroundEventConformanceFunction'"
8481
startDelay: 10
8582

8683
- name: Run cloudevent conformance tests
87-
uses: GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.2
84+
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # main
8885
with:
89-
version: 'v1.8.2'
9086
functionType: 'cloudevent'
9187
useBuildpacks: false
9288
validateMapping: true
9389
cmd: "'mvn -f invoker/conformance/pom.xml function:run -Drun.functionTarget=com.google.cloud.functions.conformance.CloudEventsConformanceFunction'"
9490
startDelay: 10
9591

9692
- name: Run HTTP concurrency conformance tests
97-
uses: GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.2
93+
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # main
9894
with:
99-
version: 'v1.8.2'
10095
functionType: 'http'
10196
useBuildpacks: false
10297
validateConcurrency: true

.github/workflows/lint.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Harden Runner
16-
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
16+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
1717
with:
1818
disable-sudo: true
1919
egress-policy: block
2020
allowed-endpoints: >
2121
github.com:443
2222
repo.maven.apache.org:443
23-
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
23+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
2424
- name: Set up JDK
25-
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
25+
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3.12.0
2626
with:
2727
java-version: 11.x
2828
distribution: temurin
@@ -38,11 +38,11 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Harden Runner
41-
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
41+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
4242
with:
4343
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
4444

45-
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 # v2 minimum required
45+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 # v2 minimum required
4646
- name: Run formatter
4747
id: formatter
4848
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
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Harden Runner
29-
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
29+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
3030
with:
3131
disable-sudo: true
3232
egress-policy: block
@@ -44,12 +44,12 @@ jobs:
4444
rekor.sigstore.dev:443
4545
4646
- name: "Checkout code"
47-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
47+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
4848
with:
4949
persist-credentials: false
5050

5151
- name: "Run analysis"
52-
uses: ossf/scorecard-action@80e868c13c90f172d68d1f4501dee99e2479f7af # v2.1.3
52+
uses: ossf/scorecard-action@08b4669551908b1024bb425080c797723083c031 # v2.2.0
5353
with:
5454
results_file: results.sarif
5555
results_format: sarif
@@ -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@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6
64+
uses: github/codeql-action/upload-sarif@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
6565
with:
6666
sarif_file: results.sarif

.github/workflows/unit.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
]
1919
steps:
2020
- name: Harden Runner
21-
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
21+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
2222
with:
2323
disable-sudo: true
2424
egress-policy: block
2525
allowed-endpoints: >
2626
github.com:443
2727
repo.maven.apache.org:443
28-
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
28+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
2929
- name: Set up JDK ${{ matrix.java }}
30-
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
30+
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3.12.0
3131
with:
3232
java-version: ${{ matrix.java }}
3333
distribution: temurin

function-maven-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@
4141
<dependency>
4242
<groupId>org.apache.maven</groupId>
4343
<artifactId>maven-plugin-api</artifactId>
44-
<version>3.9.2</version>
44+
<version>3.9.4</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>org.apache.maven</groupId>
4848
<artifactId>maven-core</artifactId>
49-
<version>3.9.2</version>
49+
<version>3.9.4</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.apache.maven.plugin-tools</groupId>
@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>com.google.truth</groupId>
7373
<artifactId>truth</artifactId>
74-
<version>1.1.4</version>
74+
<version>1.1.5</version>
7575
<scope>test</scope>
7676
</dependency>
7777
<dependency>

invoker/core/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,24 +86,24 @@
8686
<dependency>
8787
<groupId>com.google.auto.value</groupId>
8888
<artifactId>auto-value</artifactId>
89-
<version>1.10.1</version>
89+
<version>1.10.4</version>
9090
<scope>provided</scope>
9191
</dependency>
9292
<dependency>
9393
<groupId>com.google.auto.value</groupId>
9494
<artifactId>auto-value-annotations</artifactId>
95-
<version>1.10.1</version>
95+
<version>1.10.4</version>
9696
<scope>provided</scope>
9797
</dependency>
9898
<dependency>
9999
<groupId>org.eclipse.jetty</groupId>
100100
<artifactId>jetty-servlet</artifactId>
101-
<version>9.4.51.v20230217</version>
101+
<version>9.4.52.v20230823</version>
102102
</dependency>
103103
<dependency>
104104
<groupId>org.eclipse.jetty</groupId>
105105
<artifactId>jetty-server</artifactId>
106-
<version>9.4.51.v20230217</version>
106+
<version>9.4.52.v20230823</version>
107107
</dependency>
108108
<dependency>
109109
<groupId>com.beust</groupId>
@@ -139,19 +139,19 @@
139139
<dependency>
140140
<groupId>com.google.truth</groupId>
141141
<artifactId>truth</artifactId>
142-
<version>1.1.4</version>
142+
<version>1.1.5</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.1.4</version>
148+
<version>1.1.5</version>
149149
<scope>test</scope>
150150
</dependency>
151151
<dependency>
152152
<groupId>org.eclipse.jetty</groupId>
153153
<artifactId>jetty-client</artifactId>
154-
<version>9.4.51.v20230217</version>
154+
<version>9.4.52.v20230823</version>
155155
<scope>test</scope>
156156
</dependency>
157157
</dependencies>
@@ -174,7 +174,7 @@
174174
<plugin>
175175
<groupId>org.apache.maven.plugins</groupId>
176176
<artifactId>maven-shade-plugin</artifactId>
177-
<version>3.4.1</version>
177+
<version>3.5.0</version>
178178
<executions>
179179
<execution>
180180
<phase>package</phase>

0 commit comments

Comments
 (0)