Skip to content

Commit 19df4d1

Browse files
authored
Merge branch 'main' into handle_path_types
2 parents 4393e30 + 2455bfd commit 19df4d1

File tree

93 files changed

+979
-645
lines changed

Some content is hidden

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

93 files changed

+979
-645
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@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
26+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2727
with:
2828
python-version: 3.x
2929

.github/workflows/ci.yaml

Lines changed: 8 additions & 8 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@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
105+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.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@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
127+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.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@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
156+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.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.33.4/bin/linux/amd64/kubectl
175+
curl -LO https://dl.k8s.io/release/v1.34.1/bin/linux/amd64/kubectl
176176
chmod +x ./kubectl
177177
sudo mv ./kubectl /usr/local/bin/kubectl
178178
@@ -218,7 +218,7 @@ jobs:
218218

219219
steps:
220220
- name: Set up Python
221-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
221+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
222222
with:
223223
python-version: 3.x
224224

@@ -271,7 +271,7 @@ jobs:
271271
strategy:
272272
fail-fast: false
273273
matrix:
274-
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.2]
274+
k8s: [v1.30.13, v1.31.12, v1.32.8, v1.33.4, v1.34.0]
275275

276276
steps:
277277
- name: Checkout code
@@ -303,7 +303,7 @@ jobs:
303303
strategy:
304304
fail-fast: false
305305
matrix:
306-
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.2]
306+
k8s: [v1.30.13, v1.31.12, v1.32.8, v1.33.4, v1.34.0]
307307
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
308308
with:
309309
k8s-version: ${{ matrix.k8s }}
@@ -318,7 +318,7 @@ jobs:
318318
strategy:
319319
fail-fast: false
320320
matrix:
321-
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.2]
321+
k8s: [v1.30.13, v1.31.12, v1.32.8, v1.33.4, v1.34.0]
322322
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
323323
with:
324324
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1313
- name: 'Dependency Review'
14-
uses: actions/dependency-review-action@bc41886e18ea39df68b1b1245f4184881938e050 # v4.7.2
14+
uses: actions/dependency-review-action@56339e523c0409420f6c2c9a2f4292bbb3c07dd3 # v4.8.0

.github/workflows/golangci-lint.yml

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

2323
- name: Set up Go
2424
id: go
25-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
25+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2626
with:
2727
go-version: ${{ env.GOLANG_VERSION }}
2828
check-latest: true

.github/workflows/images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
strategy:
137137
fail-fast: false
138138
matrix:
139-
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.2]
139+
k8s: [v1.30.13, v1.31.12, v1.32.8, v1.33.4, v1.34.0]
140140
steps:
141141
- name: Checkout
142142
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -146,7 +146,7 @@ jobs:
146146

147147
- name: Set up Go
148148
id: go
149-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
149+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
150150
with:
151151
go-version: ${{ env.GOLANG_VERSION }}
152152
check-latest: true
@@ -183,7 +183,7 @@ jobs:
183183
version: latest
184184
platforms: ${{ env.PLATFORMS }}
185185
- name: Login to GitHub Container Registry
186-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
186+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
187187
with:
188188
username: ${{ secrets.DOCKERHUB_USERNAME }}
189189
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: echo "GOLANG_VERSION=$(cat GOLANG_VERSION)" >> $GITHUB_ENV
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
23+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2424
with:
2525
go-version: ${{ env.GOLANG_VERSION }}
2626
check-latest: true

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.5
62+
uses: github/codeql-action/upload-sarif@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
6363
with:
6464
sarif_file: results.sarif

.github/workflows/stale.yaml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/vulnerability-scans.yaml

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

6161
- name: Scan image with AquaSec/Trivy
6262
id: scan
63-
uses: aquasecurity/trivy-action@dc5a429b52fcf669ce959baa2c2dd26090d2a6c4 # v0.32.0
63+
uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # v0.33.1
6464
with:
6565
image-ref: registry.k8s.io/ingress-nginx/controller:${{ matrix.versions }}
6666
format: 'sarif'
@@ -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@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.5
78+
uses: github/codeql-action/upload-sarif@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
7979
with:
8080
token: ${{ github.token }}
8181
# Path to SARIF file relative to the root of the repository

.github/workflows/zz-tmpl-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7171

7272
- name: Login to GitHub Container Registry
73-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
73+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
7474
with:
7575
username: ${{ secrets.DOCKERHUB_USERNAME }}
7676
password: ${{ secrets.DOCKERHUB_TOKEN }}

0 commit comments

Comments
 (0)