Skip to content

Commit ba4764a

Browse files
committed
chore(deps): update all non-major dependencies
1 parent 8d56d10 commit ba4764a

File tree

7 files changed

+549
-17
lines changed

7 files changed

+549
-17
lines changed

.github/workflows/codeql.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Harden Runner
27-
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
27+
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
2828
with:
2929
disable-sudo: true
3030
egress-policy: block
@@ -40,7 +40,7 @@ jobs:
4040

4141
# Initializes the CodeQL tools for scanning.
4242
- name: Initialize CodeQL
43-
uses: github/codeql-action/init@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
43+
uses: github/codeql-action/init@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3.24.6
4444
with:
4545
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
4646
languages: go
@@ -53,9 +53,9 @@ jobs:
5353

5454
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
56+
uses: github/codeql-action/autobuild@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3.24.6
5757

5858
- name: Perform CodeQL Analysis
59-
uses: github/codeql-action/analyze@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
59+
uses: github/codeql-action/analyze@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3.24.6
6060
with:
6161
category: "/language:go"

.github/workflows/conformance.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
cache-key: ${{ steps.resolve-latest-client.outputs.version }}
2020
steps:
2121
- name: Harden Runner
22-
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
22+
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
2323
with:
2424
egress-policy: block
2525
allowed-endpoints: >
@@ -34,7 +34,7 @@ jobs:
3434
# Check if it's already in the cache
3535
- name: Cache client
3636
id: check-for-cached-client
37-
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
37+
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
3838
with:
3939
path: ~/go/bin/client
4040
key: ${{ steps.resolve-latest-client.outputs.version }}
@@ -53,7 +53,7 @@ jobs:
5353
go-version: [1.13, 1.16, 1.18]
5454
steps:
5555
- name: Harden Runner
56-
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
56+
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
5757
with:
5858
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
5959

@@ -66,7 +66,7 @@ jobs:
6666
- name: Pre-fetch go dependencies and build
6767
run: 'go build ./...'
6868
- name: Fetch conformance client
69-
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
69+
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
7070
with:
7171
path: ~/go/bin/client
7272
key: ${{ needs.download-conformance-client.outputs.cache-key }}

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
os: [ubuntu-latest, macos-latest] # windows-latest doesn't support find -wholename
1717
steps:
1818
- name: Harden Runner
19-
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
19+
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
2020
with:
2121
disable-sudo: true
2222
egress-policy: block

.github/workflows/scorecard.yml

+2-2
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@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
29+
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
3030
with:
3131
disable-sudo: true
3232
egress-policy: block
@@ -59,6 +59,6 @@ jobs:
5959

6060
# Upload the results to GitHub's code scanning dashboard.
6161
- name: "Upload to code-scanning"
62-
uses: github/codeql-action/upload-sarif@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
62+
uses: github/codeql-action/upload-sarif@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3.24.6
6363
with:
6464
sarif_file: results.sarif

.github/workflows/unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
1717
steps:
1818
- name: Harden Runner
19-
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
19+
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
2020
with:
2121
disable-sudo: true
2222
egress-policy: block

go.mod

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ module github.com/GoogleCloudPlatform/functions-framework-go
33
go 1.11
44

55
require (
6-
cloud.google.com/go v0.110.8 // indirect
7-
cloud.google.com/go/functions v1.15.3
8-
github.com/cloudevents/sdk-go/v2 v2.14.0
9-
github.com/google/go-cmp v0.5.9
10-
github.com/google/uuid v1.4.0 // indirect
6+
cloud.google.com/go/functions v1.16.0
7+
github.com/cloudevents/sdk-go/v2 v2.15.1
8+
github.com/google/go-cmp v0.6.0
119
)

0 commit comments

Comments
 (0)