Skip to content

Commit 42c546c

Browse files
authored
Merge branch 'main' into original-x-forwarded-host
2 parents 6f0114d + 387b459 commit 42c546c

File tree

102 files changed

+1224
-1212
lines changed

Some content is hidden

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

102 files changed

+1224
-1212
lines changed

.github/workflows/chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Set up Python
26-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
26+
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
2727
with:
2828
python-version: 3.x
2929

.github/workflows/ci.yaml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: Set up Go
104104
id: go
105-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
105+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
106106
with:
107107
go-version: ${{ env.GOLANG_VERSION }}
108108
check-latest: true
@@ -124,7 +124,7 @@ jobs:
124124
run: echo "GOLANG_VERSION=$(cat GOLANG_VERSION)" >> $GITHUB_ENV
125125
- name: Set up Go
126126
id: go
127-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
127+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
128128
with:
129129
go-version: ${{ env.GOLANG_VERSION }}
130130
check-latest: true
@@ -153,7 +153,7 @@ jobs:
153153
154154
- name: Set up Go
155155
id: go
156-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
156+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
157157
with:
158158
go-version: ${{ steps.golangversion.outputs.version }}
159159
check-latest: true
@@ -172,7 +172,7 @@ jobs:
172172

173173
- name: Prepare Host
174174
run: |
175-
curl -LO https://dl.k8s.io/release/v1.32.2/bin/linux/amd64/kubectl
175+
curl -LO https://dl.k8s.io/release/v1.32.3/bin/linux/amd64/kubectl
176176
chmod +x ./kubectl
177177
sudo mv ./kubectl /usr/local/bin/kubectl
178178
@@ -202,7 +202,7 @@ jobs:
202202
| gzip > docker.tar.gz
203203
204204
- name: cache
205-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
205+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
206206
with:
207207
name: docker.tar.gz
208208
path: docker.tar.gz
@@ -218,7 +218,7 @@ jobs:
218218

219219
steps:
220220
- name: Set up Python
221-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
221+
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
222222
with:
223223
python-version: 3.x
224224

@@ -269,15 +269,16 @@ jobs:
269269
if: fromJSON(needs.changes.outputs.charts) || fromJSON(needs.changes.outputs.baseimage) || fromJSON(github.event.workflow_dispatch.run_e2e)
270270

271271
strategy:
272+
fail-fast: false
272273
matrix:
273-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.2]
274+
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
274275

275276
steps:
276277
- name: Checkout code
277278
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
278279

279280
- name: Download cache
280-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
281+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
281282
with:
282283
name: docker.tar.gz
283284

@@ -300,8 +301,9 @@ jobs:
300301
if: |
301302
(needs.changes.outputs.go == 'true') || (needs.changes.outputs.baseimage == 'true') || ${{ github.event.workflow_dispatch.run_e2e == 'true' }}
302303
strategy:
304+
fail-fast: false
303305
matrix:
304-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.2]
306+
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
305307
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
306308
with:
307309
k8s-version: ${{ matrix.k8s }}
@@ -314,8 +316,9 @@ jobs:
314316
if: |
315317
(needs.changes.outputs.go == 'true') || (needs.changes.outputs.baseimage == 'true') || ${{ github.event.workflow_dispatch.run_e2e == 'true' }}
316318
strategy:
319+
fail-fast: false
317320
matrix:
318-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.2]
321+
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
319322
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
320323
with:
321324
k8s-version: ${{ matrix.k8s }}

.github/workflows/depreview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
- name: 'Checkout Repository'
1212
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1313
- name: 'Dependency Review'
14-
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0
14+
uses: actions/dependency-review-action@ce3cf9537a52e8119d91fd484ab5b8a807627bf8 # v4.6.0

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222

2323
- name: Set up Go
2424
id: go
25-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
25+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2626
with:
2727
go-version: ${{ env.GOLANG_VERSION }}
2828
check-latest: true
2929

3030
- name: golangci-lint
31-
uses: golangci/golangci-lint-action@4696ba8babb6127d732c3c6dde519db15edab9ea # v6.5.1
31+
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # v7.0.0
3232
with:
3333
only-new-issues: true

.github/workflows/images.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,9 @@ jobs:
134134
if: |
135135
(needs.changes.outputs.kube-webhook-certgen == 'true')
136136
strategy:
137+
fail-fast: false
137138
matrix:
138-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.2]
139+
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
139140
steps:
140141
- name: Checkout
141142
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -145,7 +146,7 @@ jobs:
145146

146147
- name: Set up Go
147148
id: go
148-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
149+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
149150
with:
150151
go-version: ${{ env.GOLANG_VERSION }}
151152
check-latest: true

.github/workflows/plugin.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
run: echo "GOLANG_VERSION=$(cat GOLANG_VERSION)" >> $GITHUB_ENV
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
23+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2424
with:
2525
go-version: ${{ env.GOLANG_VERSION }}
2626
check-latest: true
2727

2828
- name: Run GoReleaser Snapshot
2929
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
30-
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
30+
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
3131
with:
3232
version: "~> v2"
3333
args: release --snapshot --clean
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Run GoReleaser
3838
if: ${{ startsWith(github.ref, 'refs/tags/') }}
39-
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
39+
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
4040
with:
4141
version: "~> v2"
4242
args: release --clean

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ jobs:
5151
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5252
# format to the repository Actions tab.
5353
- name: "Upload artifact"
54-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
54+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
5555
with:
5656
name: SARIF file
5757
path: results.sarif
5858
retention-days: 5
5959

6060
# Upload the results to GitHub's code scanning dashboard.
6161
- name: "Upload to code-scanning"
62-
uses: github/codeql-action/upload-sarif@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
62+
uses: github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
6363
with:
6464
sarif_file: results.sarif

.github/workflows/vulnerability-scans.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
# This step checks out a copy of your repository.
7777
- name: Upload SARIF file
78-
uses: github/codeql-action/upload-sarif@6bb031afdd8eb862ea3fc1848194185e076637e5 # v3.28.11
78+
uses: github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
7979
with:
8080
token: ${{ github.token }}
8181
# Path to SARIF file relative to the root of the repository

.github/workflows/zz-tmpl-k8s-e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424

2525
- name: cache
26-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
26+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
2727
with:
2828
name: docker.tar.gz
2929

@@ -49,7 +49,7 @@ jobs:
4949
make kind-e2e-test
5050
5151
- name: Upload e2e junit-reports ${{ inputs.variation }}
52-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
52+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
5353
if: success() || failure()
5454
with:
5555
name: e2e-test-reports-${{ inputs.k8s-version }}${{ inputs.variation }}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy