Skip to content

Commit 77643ce

Browse files
authored
Merge branch 'main' into handle_path_types
2 parents 07eb1e0 + 57b4a14 commit 77643ce

File tree

32 files changed

+198
-159
lines changed

32 files changed

+198
-159
lines changed

.github/ISSUE_TEMPLATE/cve_report.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ title: ''
55
labels: kind/bug
66
assignees:
77
- Gacko
8-
- rikatz
98
- strongjz
109
---
1110

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
105+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
127+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
156+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
157157
with:
158158
go-version: ${{ steps.golangversion.outputs.version }}
159159
check-latest: true
@@ -163,7 +163,7 @@ jobs:
163163

164164
- name: Set up Docker Buildx
165165
id: buildx
166-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
166+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
167167
with:
168168
version: latest
169169

.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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
25+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
2626
with:
2727
go-version: ${{ env.GOLANG_VERSION }}
2828
check-latest: true

.github/workflows/images.yaml

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

146146
- name: Set up Go
147147
id: go
148-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
148+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
149149
with:
150150
go-version: ${{ env.GOLANG_VERSION }}
151151
check-latest: true
@@ -177,7 +177,7 @@ jobs:
177177
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
178178
- name: Set up Docker Buildx
179179
id: buildx
180-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
180+
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
181181
with:
182182
version: latest
183183
platforms: ${{ env.PLATFORMS }}

.github/workflows/plugin.yaml

Lines changed: 3 additions & 3 deletions
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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
23+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
2424
with:
2525
go-version: ${{ env.GOLANG_VERSION }}
2626
check-latest: true
@@ -29,7 +29,7 @@ jobs:
2929
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
3030
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
3131
with:
32-
version: latest
32+
version: "~> v2"
3333
args: release --snapshot --clean
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -38,7 +38,7 @@ jobs:
3838
if: ${{ startsWith(github.ref, 'refs/tags/') }}
3939
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
4040
with:
41-
version: latest
41+
version: "~> v2"
4242
args: release --clean
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.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@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
62+
uses: github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
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@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
78+
uses: github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
7979
with:
8080
token: ${{ github.token }}
8181
# Path to SARIF file relative to the root of the repository

GOLANG_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.23.3
1+
1.23.4

OWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ emeritus_approvers:
1010
- aledbf # 2020-04-02
1111
- bowei # 2022-10-12
1212
- ElvinEfendi # 2023-04-23
13+
- rikatz # 2024-12-15

OWNERS_ALIASES

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,19 @@ aliases:
88

99
ingress-nginx-admins:
1010
- Gacko
11-
- rikatz
1211
- strongjz
1312

1413
ingress-nginx-maintainers:
1514
- cpanato
1615
- Gacko
1716
- puerco
18-
- rikatz
1917
- strongjz
2018
- tao12345666333
2119

2220
ingress-nginx-reviewers:
2321
- cpanato
2422
- Gacko
2523
- puerco
26-
- rikatz
2724
- strongjz
2825
- tao12345666333
2926

0 commit comments

Comments
 (0)