Skip to content

Commit 0c64378

Browse files
chore(deps): update all non-major dependencies (#370)
* chore(deps): update all non-major dependencies * keep cloudevents version --------- Co-authored-by: Andras Kerekes <[email protected]>
1 parent a1c557c commit 0c64378

File tree

9 files changed

+26
-26
lines changed

9 files changed

+26
-26
lines changed

.github/workflows/codeql.yml

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

4242
steps:
4343
- name: Harden Runner
44-
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
44+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
4545
with:
4646
disable-sudo: true
4747
egress-policy: block
@@ -57,7 +57,7 @@ jobs:
5757

5858
# Initializes the CodeQL tools for scanning.
5959
- name: Initialize CodeQL
60-
uses: github/codeql-action/init@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
60+
uses: github/codeql-action/init@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
6161
with:
6262
languages: ${{ matrix.language }}
6363
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -67,7 +67,7 @@ jobs:
6767
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6868
# If this step fails, then you should remove it and run the build manually (see below)
6969
- name: Autobuild
70-
uses: github/codeql-action/autobuild@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
70+
uses: github/codeql-action/autobuild@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
7171

7272
# ℹ️ Command-line programs to run using the OS shell.
7373
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -80,6 +80,6 @@ jobs:
8080
# ./location_of_script_within_repo/buildscript.sh
8181

8282
- name: Perform CodeQL Analysis
83-
uses: github/codeql-action/analyze@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
83+
uses: github/codeql-action/analyze@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
8484
with:
8585
category: "/language:${{matrix.language}}"

.github/workflows/conformance-asgi.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ${{ matrix.platform }}
1818
steps:
1919
- name: Harden Runner
20-
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
20+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
2121
with:
2222
disable-sudo: true
2323
egress-policy: block
@@ -48,39 +48,39 @@ jobs:
4848
go-version: '1.24'
4949

5050
- name: Run HTTP conformance tests
51-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
51+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
5252
with:
5353
functionType: 'http'
5454
useBuildpacks: false
5555
validateMapping: false
5656
cmd: "'functions-framework --source tests/conformance/async_main.py --target write_http --signature-type http --asgi'"
5757

5858
- name: Run CloudEvents conformance tests
59-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
59+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
6060
with:
6161
functionType: 'cloudevent'
6262
useBuildpacks: false
6363
validateMapping: false
6464
cmd: "'functions-framework --source tests/conformance/async_main.py --target write_cloud_event --signature-type cloudevent --asgi'"
6565

6666
- name: Run HTTP conformance tests declarative
67-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
67+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
6868
with:
6969
functionType: 'http'
7070
useBuildpacks: false
7171
validateMapping: false
7272
cmd: "'functions-framework --source tests/conformance/async_main.py --target write_http_declarative --asgi'"
7373

7474
- name: Run CloudEvents conformance tests declarative
75-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
75+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
7676
with:
7777
functionType: 'cloudevent'
7878
useBuildpacks: false
7979
validateMapping: false
8080
cmd: "'functions-framework --source tests/conformance/async_main.py --target write_cloud_event_declarative --asgi'"
8181

8282
- name: Run HTTP concurrency tests declarative
83-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
83+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
8484
with:
8585
functionType: 'http'
8686
useBuildpacks: false

.github/workflows/conformance.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ${{ matrix.platform }}
2323
steps:
2424
- name: Harden Runner
25-
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
25+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
2626
with:
2727
disable-sudo: true
2828
egress-policy: block
@@ -53,55 +53,55 @@ jobs:
5353
go-version: '1.24'
5454

5555
- name: Run HTTP conformance tests
56-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
56+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
5757
with:
5858
functionType: 'http'
5959
useBuildpacks: false
6060
validateMapping: false
6161
cmd: "'functions-framework --source tests/conformance/main.py --target write_http --signature-type http'"
6262

6363
- name: Run event conformance tests
64-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
64+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
6565
with:
6666
functionType: 'legacyevent'
6767
useBuildpacks: false
6868
validateMapping: true
6969
cmd: "'functions-framework --source tests/conformance/main.py --target write_legacy_event --signature-type event'"
7070

7171
- name: Run CloudEvents conformance tests
72-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
72+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
7373
with:
7474
functionType: 'cloudevent'
7575
useBuildpacks: false
7676
validateMapping: true
7777
cmd: "'functions-framework --source tests/conformance/main.py --target write_cloud_event --signature-type cloudevent'"
7878

7979
- name: Run HTTP conformance tests declarative
80-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
80+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
8181
with:
8282
functionType: 'http'
8383
useBuildpacks: false
8484
validateMapping: false
8585
cmd: "'functions-framework --source tests/conformance/main.py --target write_http_declarative'"
8686

8787
- name: Run CloudEvents conformance tests declarative
88-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
88+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
8989
with:
9090
functionType: 'cloudevent'
9191
useBuildpacks: false
9292
validateMapping: true
9393
cmd: "'functions-framework --source tests/conformance/main.py --target write_cloud_event_declarative'"
9494

9595
- name: Run HTTP concurrency tests declarative
96-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
96+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
9797
with:
9898
functionType: 'http'
9999
useBuildpacks: false
100100
validateConcurrency: true
101101
cmd: "'functions-framework --source tests/conformance/main.py --target write_http_declarative_concurrent'"
102102

103103
- name: Run Typed tests declarative
104-
uses: GoogleCloudPlatform/functions-framework-conformance/action@72a4f36b10f1c6435ab1a86a9ea24bda464cc262 # v1.8.6
104+
uses: GoogleCloudPlatform/functions-framework-conformance/action@c7b9c8798fb35e454f76da185a40547ee55c784e # v1.8.7
105105
with:
106106
functionType: 'http'
107107
declarativeType: 'typed'

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Harden Runner
20-
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
20+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
2121
with:
2222
disable-sudo: true
2323
egress-policy: block

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Harden Runner
15-
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
15+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
1616
with:
1717
disable-sudo: true
1818
egress-policy: block

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
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@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
16+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
1717
with:
1818
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
1919

.github/workflows/scorecard.yml

Lines changed: 3 additions & 3 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@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
29+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
3030
with:
3131
disable-sudo: true
3232
egress-policy: block
@@ -52,7 +52,7 @@ jobs:
5252
persist-credentials: false
5353

5454
- name: "Run analysis"
55-
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
55+
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
5656
with:
5757
results_file: results.sarif
5858
results_format: sarif
@@ -64,6 +64,6 @@ jobs:
6464

6565
# Upload the results to GitHub's code scanning dashboard.
6666
- name: "Upload to code-scanning"
67-
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
67+
uses: github/codeql-action/upload-sarif@4e828ff8d448a8a6e532957b1811f387a63867e8 # v3.29.4
6868
with:
6969
sarif_file: results.sarif

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ${{ matrix.platform }}
4242
steps:
4343
- name: Harden Runner
44-
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
44+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
4545
with:
4646
disable-sudo: true
4747
egress-policy: block

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies = [
2727
"click>=7.0,<9.0",
2828
"watchdog>=1.0.0",
2929
"gunicorn>=22.0.0; platform_system!='Windows'",
30-
"cloudevents>=1.2.0,<=1.11.0", # Must support python 3.7
30+
"cloudevents>=1.2.0,<=1.11.0", # Must support python 3.7
3131
"Werkzeug>=0.14,<4.0.0",
3232
"starlette>=0.37.0,<1.0.0; python_version>='3.8'",
3333
"uvicorn>=0.18.0,<1.0.0; python_version>='3.8'",

0 commit comments

Comments
 (0)