Skip to content

Commit d327dea

Browse files
committed
chore(deps): update all non-major dependencies
1 parent a91079a commit d327dea

File tree

7 files changed

+816
-21
lines changed

7 files changed

+816
-21
lines changed

.github/workflows/codeql.yml

+5-5
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
@@ -36,11 +36,11 @@ jobs:
3636
objects.githubusercontent.com:443
3737
3838
- name: Checkout repository
39-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
39+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
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@8f596b4ae3cb3c588a5c46780b86dd53fef16c52 # v3.25.2
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@8f596b4ae3cb3c588a5c46780b86dd53fef16c52 # v3.25.2
5757

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

.github/workflows/conformance.yml

+5-5
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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
3838
with:
3939
path: ~/go/bin/client
4040
key: ${{ steps.resolve-latest-client.outputs.version }}
@@ -53,20 +53,20 @@ 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

6060
- name: Check out code
61-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
61+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
6262
- name: Set up Go ${{ matrix.go-version }}
6363
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
6464
with:
6565
go-version: '${{ matrix.go-version }}'
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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
7070
with:
7171
path: ~/go/bin/client
7272
key: ${{ needs.download-conformance-client.outputs.cache-key }}

.github/workflows/lint.yml

+2-2
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
@@ -26,7 +26,7 @@ jobs:
2626
objects.githubusercontent.com:443
2727
2828
- name: Checkout code
29-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
29+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3030
- name: Setup Go
3131
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
3232
with:

.github/workflows/scorecard.yml

+3-3
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
@@ -42,7 +42,7 @@ jobs:
4242
*.sigstore.dev:443
4343
4444
- name: "Checkout code"
45-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
45+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
4646
with:
4747
persist-credentials: false
4848

@@ -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@8f596b4ae3cb3c588a5c46780b86dd53fef16c52 # v3.25.2
6363
with:
6464
sarif_file: results.sarif

.github/workflows/unit.yml

+2-2
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
@@ -27,7 +27,7 @@ jobs:
2727
proxy.golang.org:443
2828
2929
- name: Checkout code
30-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
30+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3131
- name: Setup Go
3232
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
3333
with:

go.mod

+2-4
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
6+
cloud.google.com/go/functions v1.16.1
87
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
8+
github.com/google/go-cmp v0.6.0
119
)

0 commit comments

Comments
 (0)