Skip to content

Commit 47bed87

Browse files
authored
Merge branch 'main' into feat/ctp-host-normalization
Signed-off-by: zirain <zirain2009@gmail.com>
2 parents 6bf98d7 + 4872e53 commit 47bed87

396 files changed

Lines changed: 24710 additions & 1914 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,139 @@ updates:
8181
helm:
8282
patterns:
8383
- "*"
84+
# release/v1.8 branch updates — remove when release/v1.8 reaches EOL
85+
- package-ecosystem: docker
86+
target-branch: "release/v1.8"
87+
directories:
88+
- /tools/docker/envoy-gateway/
89+
- /site
90+
schedule:
91+
interval: weekly
92+
- package-ecosystem: github-actions
93+
target-branch: "release/v1.8"
94+
directories:
95+
- /
96+
- /tools/github-actions/setup-deps
97+
schedule:
98+
interval: weekly
99+
ignore:
100+
- dependency-name: "envoyproxy/toolshed/gh-actions/retest"
101+
groups:
102+
actions:
103+
patterns:
104+
- "*"
105+
- package-ecosystem: gomod
106+
target-branch: "release/v1.8"
107+
directories:
108+
- "/"
109+
- "examples/*"
110+
schedule:
111+
interval: weekly
112+
ignore:
113+
- dependency-name: "github.com/google/cel-go"
114+
- dependency-name: "github.com/google/go-containerregistry"
115+
- dependency-name: "k8s.io/apimachinery"
116+
groups:
117+
gomod:
118+
patterns:
119+
- "github.com*"
120+
- "go.opentelemetry.io*"
121+
- "golang*"
122+
- "golang.org*"
123+
- "google*"
124+
- "google.golang.org*"
125+
- "fortio.org*"
126+
- "gopkg.in*"
127+
- "helm.sh*"
128+
- "gomodules.xyz*"
129+
exclude-patterns:
130+
- "github.com/envoyproxy/go-control-plane*"
131+
k8s.io:
132+
patterns:
133+
- "k8s.io/*"
134+
- package-ecosystem: pip
135+
target-branch: "release/v1.8"
136+
directories:
137+
- /tools/src/codespell
138+
- /tools/src/sphinx-build
139+
- /tools/src/yamllint
140+
schedule:
141+
interval: weekly
142+
- package-ecosystem: "helm"
143+
target-branch: "release/v1.8"
144+
directories:
145+
- "/charts/gateway-addons-helm"
146+
schedule:
147+
interval: "weekly"
148+
groups:
149+
helm:
150+
patterns:
151+
- "*"
152+
# release/v1.7 branch updates — remove when release/v1.7 reaches EOL
153+
- package-ecosystem: docker
154+
target-branch: "release/v1.7"
155+
directories:
156+
- /tools/docker/envoy-gateway/
157+
- /site
158+
schedule:
159+
interval: weekly
160+
- package-ecosystem: github-actions
161+
target-branch: "release/v1.7"
162+
directories:
163+
- /
164+
- /tools/github-actions/setup-deps
165+
schedule:
166+
interval: weekly
167+
ignore:
168+
- dependency-name: "envoyproxy/toolshed/gh-actions/retest"
169+
groups:
170+
actions:
171+
patterns:
172+
- "*"
173+
- package-ecosystem: gomod
174+
target-branch: "release/v1.7"
175+
directories:
176+
- "/"
177+
- "examples/*"
178+
schedule:
179+
interval: weekly
180+
ignore:
181+
- dependency-name: "github.com/google/cel-go"
182+
- dependency-name: "github.com/google/go-containerregistry"
183+
- dependency-name: "k8s.io/apimachinery"
184+
groups:
185+
gomod:
186+
patterns:
187+
- "github.com*"
188+
- "go.opentelemetry.io*"
189+
- "golang*"
190+
- "golang.org*"
191+
- "google*"
192+
- "google.golang.org*"
193+
- "fortio.org*"
194+
- "gopkg.in*"
195+
- "helm.sh*"
196+
- "gomodules.xyz*"
197+
exclude-patterns:
198+
- "github.com/envoyproxy/go-control-plane*"
199+
k8s.io:
200+
patterns:
201+
- "k8s.io/*"
202+
- package-ecosystem: pip
203+
target-branch: "release/v1.7"
204+
directories:
205+
- /tools/src/codespell
206+
- /tools/src/sphinx-build
207+
- /tools/src/yamllint
208+
schedule:
209+
interval: weekly
210+
- package-ecosystem: "helm"
211+
target-branch: "release/v1.7"
212+
directories:
213+
- "/charts/gateway-addons-helm"
214+
schedule:
215+
interval: "weekly"
216+
groups:
217+
helm:
218+
patterns:
219+
- "*"

.github/workflows/build_and_test.yaml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
lint:
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
44+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
4545
- uses: ./tools/github-actions/setup-deps
4646
# Generate the installation manifests first, so it can check
4747
# for errors while running `make -k lint`
@@ -52,14 +52,14 @@ jobs:
5252
gen-check:
5353
runs-on: ubuntu-latest
5454
steps:
55-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
55+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
5656
- uses: ./tools/github-actions/setup-deps
5757
- run: make -k gen-check
5858

5959
license-check:
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
62+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
6363
- uses: ./tools/github-actions/setup-deps
6464
- run: make -k licensecheck
6565

@@ -72,20 +72,21 @@ jobs:
7272
- changes
7373
if: ${{ github.event_name != 'pull_request' || needs.changes.outputs.run_test_workflow == 'true' }}
7474
steps:
75-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
75+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
7676
- uses: ./tools/github-actions/setup-deps
7777

7878
# test
7979
- name: Run Coverage Tests
8080
run: make go.test.coverage
8181
- name: Upload coverage to Codecov
82-
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
82+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
8383
with:
8484
fail_ci_if_error: true
8585
files: ./coverage.xml
8686
name: codecov-envoy-gateway
8787
verbose: true
8888
use_oidc: true
89+
version: v11.2.8
8990

9091
go-benchmark-test:
9192
runs-on: ubuntu-latest
@@ -94,7 +95,7 @@ jobs:
9495
- build
9596
if: ${{ github.event_name != 'pull_request' || needs.changes.outputs.run_test_workflow == 'true' }}
9697
steps:
97-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
98+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
9899
with:
99100
fetch-depth: 0 # Need main branch access for benchmark comparison
100101
- uses: ./tools/github-actions/setup-deps
@@ -111,7 +112,7 @@ jobs:
111112
needs: [changes, lint, gen-check, license-check, coverage-test]
112113
if: ${{ github.event_name != 'pull_request' || needs.changes.outputs.run_test_workflow == 'true' }}
113114
steps:
114-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
115+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
115116
# For main branch builds, we need to fetch tags so go binary will be built with
116117
# the recent vX.Y.Z-rc.0 tag, which helps avoid false positives in vulnerability scans.
117118
# `fetch-tags: true` doesn't work: https://github.com/actions/checkout/issues/1471
@@ -140,7 +141,7 @@ jobs:
140141
needs: [changes, lint, gen-check, license-check, coverage-test]
141142
if: ${{ github.event_name != 'pull_request' || needs.changes.outputs.run_test_workflow == 'true' }}
142143
steps:
143-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
144+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
144145
- uses: ./tools/github-actions/setup-deps
145146

146147
- name: Build egctl Binary
@@ -186,7 +187,7 @@ jobs:
186187
profile: watch-namespaces
187188
gwapiChannel: experimental
188189
steps:
189-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
190+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
190191
- uses: ./tools/github-actions/setup-deps
191192

192193
- name: Download EG Binaries
@@ -246,7 +247,7 @@ jobs:
246247
profile: watch-namespaces
247248

248249
steps:
249-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
250+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
250251
- uses: ./tools/github-actions/setup-deps
251252
- uses: ./tools/github-actions/reclaim-storage
252253

@@ -289,7 +290,7 @@ jobs:
289290
# So we need to check if this is a pull request and changes.
290291
if: ${{ github.event_name == 'pull_request' && needs.changes.outputs.run_test_workflow == 'true' }}
291292
steps:
292-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
293+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
293294
- uses: ./tools/github-actions/setup-deps
294295

295296
- name: Download EG Binaries
@@ -329,7 +330,7 @@ jobs:
329330
- build
330331
- changes
331332
steps:
332-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
333+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
333334
- uses: ./tools/github-actions/setup-deps
334335

335336
- name: Download EG Binaries
@@ -353,7 +354,7 @@ jobs:
353354
needs: [conformance-test, e2e-test]
354355
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
355356
steps:
356-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
357+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
357358
- uses: ./tools/github-actions/setup-deps
358359

359360
- name: Download EG Binaries

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ jobs:
3232

3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
35+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
3636
- uses: ./tools/github-actions/setup-deps
3737

3838
- name: Initialize CodeQL
39-
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3.29.5
39+
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v3.29.5
4040
with:
4141
languages: ${{ matrix.language }}
4242

4343
- name: Autobuild
44-
uses: github/codeql-action/autobuild@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3.29.5
44+
uses: github/codeql-action/autobuild@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v3.29.5
4545

4646
- name: Perform CodeQL Analysis
47-
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3.29.5
47+
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v3.29.5
4848
with:
4949
category: "/language:${{matrix.language}}"

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Check out code
24-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
24+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2525
with:
2626
ref: ${{ github.event.pull_request.head.sha }}
2727

@@ -40,7 +40,7 @@ jobs:
4040
contents: write
4141
steps:
4242
- name: Git checkout
43-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
43+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
4444
with:
4545
submodules: true
4646
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/experimental_conformance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
ipFamily: ipv4
5050
profile: watch-namespaces
5151
steps:
52-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
52+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
5353
- uses: ./tools/github-actions/setup-deps
5454

5555
# gateway api experimental conformance

.github/workflows/license-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2020
- name: Run scanner
2121
uses: google/osv-scanner-action/osv-scanner-action@9a498708959aeaef5ef730655706c5a1df1edbc2 # v2.3.8
2222
with:

.github/workflows/monthly-release-issue.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
1818

1919
- name: Collect supported versions from hugo.toml
2020
id: versions

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
verify-build-and-test:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
1818
- name: Verify Build and Test Success
1919
env:
2020
GH_TOKEN: ${{ github.token }}
@@ -56,7 +56,7 @@ jobs:
5656
if: ${{ !contains(github.ref, '-rc.0') }}
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
59+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
6060
- uses: ./tools/github-actions/setup-deps
6161

6262

@@ -93,7 +93,7 @@ jobs:
9393
permissions:
9494
contents: write
9595
steps:
96-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
96+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
9797
- uses: ./tools/github-actions/reclaim-storage
9898

9999
- name: Extract Release Tag and Commit SHA

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout code"
24-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
24+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2525
with:
2626
persist-credentials: false
2727

@@ -40,6 +40,6 @@ jobs:
4040
retention-days: 5
4141

4242
- name: "Upload to code-scanning"
43-
uses: github/codeql-action/upload-sarif@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3.29.5
43+
uses: github/codeql-action/upload-sarif@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v3.29.5
4444
with:
4545
sarif_file: results.sarif

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
21+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2222
# We need to fetch tags so go binary will be built with the recent vX.Y.Z-rc.0 tag,
2323
# which will help to avoid false positives in trivy scan.
2424
# `fetch-tags: true` doesn't work: https://github.com/actions/checkout/issues/1471

0 commit comments

Comments
 (0)