8000 chore(deps): update all non-major dependencies (#257) · cofin/functions-framework-python@a7076a6 · GitHub
[go: up one dir, main page]

Skip to content

Commit a7076a6

Browse files
authored
chore(deps): update all non-major dependencies (GoogleCloudPlatform#257)
1 parent 8829aed commit a7076a6

File tree

7 files changed

+32
-32
lines changed

7 files changed

+32
-32
lines changed

.github/workflows/codeql.yml

Lines changed: 5 additions & 5 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@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
44+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
4545
with:
4646
disable-sudo: true
4747
egress-policy: block
@@ -53,11 +53,11 @@ jobs:
5353
objects.githubusercontent.com:443
5454
5555
- name: Checkout repository
56-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
56+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
5757

5858
# Initializes the CodeQL tools for scanning.
5959
- name: Initialize CodeQL
60-
uses: github/codeql-action/init@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6
60+
uses: github/codeql-action/init@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.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@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6
70+
uses: github/codeql-action/autobuild@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.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@83f0fe6c4988d98a455712a27f0255212bba9bd4 # v2.3.6
83+
uses: github/codeql-action/analyze@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4
8484
with:
8585
category: "/language:${{matrix.language}}"

.github/workflows/conformance.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
1717
steps:
1818
- name: Harden Runner
19-
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
19+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
2020
with:
2121
disable-sudo: true
2222
egress-policy: block
@@ -30,71 +30,71 @@ jobs:
3030
storage.googleapis.com:443
3131
3232
- name: Checkout code
33-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
33+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
3434

3535
- name: Setup Python
36-
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1
36+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
3737
with:
3838
python-version: ${{ matrix.python }}
3939

4040
- name: Install the framework
4141
run: python -m pip install -e .
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:
4646
go-version: '1.20'
4747

4848
- name: Run HTTP conformance tests
49-
uses: GoogleCloudPlatform/functions-framework-conformance/action@5f2a796b58f099d749e70ecc83f531f6701c64af # v1.8.3
49+
uses: GoogleCloudPlatform/functions-framework-conformance/action@64d4646c26d11281faf5e8813dd0fc8a9551cac3 # v1.8.5
5050
with:
5151
functionType: 'http'
5252
useBuildpacks: false
5353
validateMapping: false
5454
cmd: "'functions-framework --source tests/conformance/main.py --target write_http --signature-type http'"
5555

5656
- name: Run event conformance tests
57-
uses: GoogleCloudPlatform/functions-framework-conformance/action@5f2a796b58f099d749e70ecc83f531f6701c64af # v1.8.3
57+
uses: GoogleCloudPlatform/functions-framework-conformance/action@64d4646c26d11281faf5e8813dd0fc8a9551cac3 # v1.8.5
5858
with:
5959
functionType: 'legacyevent'
6060
useBuildpacks: false
6161
validateMapping: true
6262
cmd: "'functions-framework --source tests/conformance/main.py --target write_legacy_event --signature-type event'"
6363

6464
- name: Run CloudEvents conformance tests
65-
uses: GoogleCloudPlatform/functions-framework-conformance/action@5f2a796b58f099d749e70ecc83f531f6701c64af # v1.8.3
65+
uses: GoogleCloudPlatform/functions-framework-conformance/action@64d4646c26d11281faf5e8813dd0fc8a9551cac3 # v1.8.5
6666
with:
6767
functionType: 'cloudevent'
6868
useBuildpacks: false
6969
validateMapping: true
7070
cmd: "'functions-framework --source tests/conformance/main.py --target write_cloud_event --signature-type cloudevent'"
7171

7272
- name: Run HTTP conformance tests declarative
73-
uses: GoogleCloudPlatform/functions-framework-conformance/action@5f2a796b58f099d749e70ecc83f531f6701c64af # v1.8.3
73+
uses: GoogleCloudPlatform/functions-framework-conformance/action@64d4646c26d11281faf5e8813dd0fc8a9551cac3 # v1.8.5
7474
with:
7575
functionType: 'http'
7676
useBuildpacks: false
7777
validateMapping: false
7878
cmd: "'functions-framework --source tests/conformance/main.py --target write_http_declarative'"
7979

8080
- name: Run CloudEvents conformance tests declarative
81-
uses: GoogleCloudPlatform/functions-framework-conformance/action@5f2a796b58f099d749e70ecc83f531f6701c64af # v1.8.3
81+
uses: GoogleCloudPlatform/functions-framework-conformance/action@64d4646c26d11281faf5e8813dd0fc8a9551cac3 # v1.8.5
8282
with:
8383
functionType: 'cloudevent'
8484
useBuildpacks: false
8585
validateMapping: true
8686
cmd: "'functions-framework --source tests/conformance/main.py --target write_cloud_event_declarative'"
8787

8888
- name: Run HTTP concurrency tests declarative
89-
uses: GoogleCloudPlatform/functions-framework-conformance/action@5f2a796b58f099d749e70ecc83f531f6701c64af # v1.8.3
89+
uses: GoogleCloudPlatform/functions-framework-conformance/action@64d4646c26d11281faf5e8813dd0fc8a9551cac3 # v1.8.5
9090
with:
9191
functionType: 'http'
9292
useBuildpacks: false
9393
validateConcurrency: true
9494
cmd: "'functions-framework --source tests/conformance/main.py --target write_http_declarative_concurrent'"
9595

9696
- name: Run Typed tests declarative
97-
uses: GoogleCloudPlatform/functions-framework-conformance/action@5f2a796b58f099d749e70ecc83f531f6701c64af # v1.8.3
97+
uses: GoogleCloudPlatform/functions-framework-conformance/action@64d4646c26d11281faf5e8813dd0fc8a9551cac3 # v1.8.5
9898
with:
9999
functionType: 'http'
100100
declarativeType: 'typed'

.github/workflows/dependency-review.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Harden Runner
20-
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
20+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
2121
with:
2222
disable-sudo: true
2323
egress-policy: block
2424
allowed-endpoints: >
2525
api.github.com:443
2626
github.com:443
2727
- name: 'Checkout Repository'
28-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
28+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2929
- name: 'Dependency Review'
30-
uses: actions/dependency-review-action@1360a344ccb0ab6e9475edef90ad2f46bf8003b1 # v3.0.6
30+
uses: actions/dependency-review-action@f6fff72a3217f580d5afd49a46826795305b63c7 # v3.0.8

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
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@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
15+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
1616
with:
1717
disable-sudo: true
1818
egress-policy: block
@@ -21,9 +21,9 @@ jobs:
2121
github.com:443
2222
pypi.org:443
2323
24-
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
24+
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2525
- name: Setup Python
26-
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1
26+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
2727
- name: Install tox
2828
run: python -m pip install tox
2929
- name: Lint

.github/workflows/release.yml

Lines changed: 3 additions & 3 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
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
1919

2020
- name: Checkout
21-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
21+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2222
with:
2323
ref: ${{ github.event.release.tag_name }}
2424
- name: Install Python
25-
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1
25+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
2626
- name: Install build dependencies
2727
run: python -m pip install -U setuptools build wheel
2828
- name: Build distributions

.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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
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@a09933a12a80f87b87005513f0abb1494c27a716 # v2.21.4
6565
with:
6666
sarif_file: results.sarif

.github/workflows/unit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.platform }}
1717
steps:
1818
- name: Harden Runner
19-
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
19+
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
2020
with:
2121
disable-sudo: true
2222
egress-policy: block
@@ -29,9 +29,9 @@ jobs:
2929
registry-1.docker.io:443
3030
3131
- name: Checkout
32-
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
32+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
3333
- name: Use Python ${{ matrix.python }}
34-
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.1
34+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
3535
with:
3636
python-version: ${{ matrix.python }}
3737
- name: Install tox

0 commit comments

Comments
 (0)
0