Skip to content

Commit 32f48a3

Browse files
authored
chore: backport 04/20/2026 (#1295)
2 parents abde86f + 800247c commit 32f48a3

54 files changed

Lines changed: 1421 additions & 59 deletions

Some content is hidden

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

.github/workflows/chart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4848

4949
- name: Login to GitHub Container Registry
50-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
50+
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
5151
with:
5252
registry: ${{ env.REGISTRY }}
5353
username: ${{ github.actor }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
paths-ignore: [docs/**, "**.md", "**.mdx", "**.png", "**.jpg"]
1414

1515
env:
16-
GO_VERSION: '1.25.8'
16+
GO_VERSION: '1.25.9'
1717
CERT_MANAGER_VERSION: 'v1.16.2'
1818

1919
jobs:
@@ -184,7 +184,7 @@ jobs:
184184

185185
- name: Upload logs
186186
if: always()
187-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
187+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
188188
with:
189189
name: e2e-logs-${{ matrix.customized-settings }}
190190
path: test/e2e/logs-${{ matrix.customized-settings }}/

.github/workflows/code-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
env:
1616
# Common versions
17-
GO_VERSION: "1.25.8"
17+
GO_VERSION: "1.25.9"
1818

1919
jobs:
2020
detect-noop:

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4
45+
uses: github/codeql-action/init@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@c10b8064de6f491fea524254123dbe5e09572f13 # v4
59+
uses: github/codeql-action/autobuild@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -69,4 +69,4 @@ jobs:
6969
# ./location_of_script_within_repo/buildscript.sh
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4
72+
uses: github/codeql-action/analyze@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Harden Runner
15-
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
15+
uses: step-security/harden-runner@6c3c2f2c1c457b00c10c4848d6f5491db3b629df # v2.18.0
1616
with:
1717
egress-policy: audit
1818

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
HUB_AGENT_IMAGE_NAME: hub-agent
2121
MEMBER_AGENT_IMAGE_NAME: member-agent
2222
REFRESH_TOKEN_IMAGE_NAME: refresh-token
23-
GO_VERSION: "1.25.8"
23+
GO_VERSION: "1.25.9"
2424

2525
jobs:
2626
export-registry:
@@ -46,7 +46,7 @@ jobs:
4646
ref: ${{ needs.export-registry.outputs.tag }}
4747

4848
- name: Login to ghcr.io
49-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9
49+
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121
5050
with:
5151
registry: ghcr.io
5252
username: ${{ github.actor }}

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
MEMBER_AGENT_IMAGE_NAME: member-agent
1919
REFRESH_TOKEN_IMAGE_NAME: refresh-token
2020

21-
GO_VERSION: '1.25.8'
21+
GO_VERSION: '1.25.9'
2222

2323
jobs:
2424
export-registry:
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4848

4949
- name: Login to ${{ env.REGISTRY }}
50-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9
50+
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121
5151
with:
5252
registry: ${{ env.REGISTRY }}
5353
username: ${{ github.actor }}

.github/workflows/upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
paths-ignore: [docs/**, "**.md", "**.mdx", "**.png", "**.jpg"]
1818

1919
env:
20-
GO_VERSION: '1.25.8'
20+
GO_VERSION: '1.25.9'
2121

2222
jobs:
2323
detect-noop:

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
run:
22
timeout: 15m
3-
go: '1.25.8'
3+
go: '1.25.9'
44

55
linters-settings:
66
stylecheck:

MAINTAINERS.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# The KubeFleet Maintainers
22

3-
| Maintainer | Organization | GitHub Username |
4-
|----------------|--------------|----------------------------------------------------|
5-
| Ryan Zhang | Microsoft | [@ryanzhang-oss](https://github.com/ryanzhang-oss) |
6-
| Zhiying Lin | Microsoft | [@zhiying-lin](https://github.com/zhiying-lin) |
7-
| Chen Yu | Microsoft | [@michaelawyu](https://github.com/michaelawyu) |
8-
| Wei Weng | Microsoft | [@weng271190436](https://github.com/weng271190436) |
9-
| Yetkin Timocin | Microsoft | [@ytimocin](https://github.com/ytimocin) |
10-
| Simon Waight | Microsoft | [@sjwaight](https://github.com/sjwaight) |
3+
| Maintainer | Organization | GitHub Username |
4+
|------------------|--------------|----------------------------------------------------|
5+
| Ryan Zhang | Microsoft | [@ryanzhang-oss](https://github.com/ryanzhang-oss) |
6+
| Zhiying Lin | Microsoft | [@zhiying-lin](https://github.com/zhiying-lin) |
7+
| Chen Yu | Microsoft | [@michaelawyu](https://github.com/michaelawyu) |
8+
| Wei Weng | Microsoft | [@weng271190436](https://github.com/weng271190436) |
9+
| Yetkin Timocin | Microsoft | [@ytimocin](https://github.com/ytimocin) |
10+
| Stéphane Erbrech | Microsoft | [@serbrech](https://github.com/serbrech) |
11+
| Simon Waight | Microsoft | [@sjwaight](https://github.com/sjwaight) |

0 commit comments

Comments
 (0)