Skip to content

Commit dd59be3

Browse files
authored
Merge branch 'kubernetes:master' into no-kubernetes-skip-downloads
2 parents acfd8b7 + 4c228db commit dd59be3

File tree

260 files changed

+19755
-14355
lines changed

Some content is hidden

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

260 files changed

+19755
-14355
lines changed

.github/ISSUE_TEMPLATE/__en-US.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,7 @@ body:
5050
- VMware
5151
- Parallels
5252
- QEMU
53+
- vfkit
54+
- krunkit
5355
validations:
5456
required: false

.github/ISSUE_TEMPLATE/ru.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,7 @@ body:
4848
- VMware
4949
- Parallels
5050
- QEMU
51+
- vfkit
52+
- krunkit
5153
validations:
5254
required: false

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
echo workspace $GITHUB_WORKSPACE
4040
echo "end of debug stuff"
4141
echo $(which jq)
42-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
42+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4343
with:
4444
name: minikube_binaries
4545
path: out

.github/workflows/functional_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
make e2e-linux-amd64 e2e-darwin-amd64
4747
cp -r test/integration/testdata ./out
4848
- name: Upload Test Binaries
49-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
49+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
5050
with:
5151
name: binaries
5252
path: out
@@ -377,9 +377,9 @@ jobs:
377377
if: matrix.os == 'macos-13' && matrix.driver == 'vfkit'
378378
run: |
379379
brew install vfkit
380-
curl -fsSL https://github.com/minikube-machine/vmnet-helper/releases/latest/download/install.sh | bash -s
380+
curl -fsSL https://github.com/minikube-machine/vmnet-helper/releases/latest/download/install.sh | sudo VMNET_INTERACTIVE=0 bash
381381
- name: Download Test Binaries
382-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
382+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
383383
with:
384384
name: binaries
385385
- name: Disable AppArmor for MySQL
@@ -455,7 +455,7 @@ jobs:
455455
echo "RUN_ID_SHORT=${RUN_ID_SHORT}" >> $GITHUB_OUTPUT
456456
- name: Upload Gopogh report
457457
id: upload_gopogh
458-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
458+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
459459
with:
460460
name: functional-${{ matrix.name }}-${{ steps.vars.outputs.PR_OR_MASTER }}-sha-${{ steps.vars.outputs.COMMIT_SHA }}-run-${{ steps.vars.outputs.RUN_ID_SHORT}}
461461
path: ./report

.github/workflows/functional_verified.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
sudo apt-get install -y libvirt-dev
4747
MINIKUBE_BUILD_IN_DOCKER=y make e2e-linux-arm64
4848
cp -r test/integration/testdata ./out
49-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
49+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
5050
with:
5151
name: minikube_binaries
5252
path: out
@@ -118,7 +118,7 @@ jobs:
118118
hostname || true
119119
echo "--------------------------"
120120
- name: Download Binaries
121-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
121+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
122122
with:
123123
name: minikube_binaries
124124
path: minikube_binaries
@@ -165,7 +165,7 @@ jobs:
165165
echo "${STAT}" >> $GITHUB_ENV
166166
echo 'EOF' >> $GITHUB_ENV
167167
168-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
168+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
169169
with:
170170
name: functional_docker_ubuntu_arm64
171171
path: minikube_binaries/report
@@ -202,14 +202,14 @@ jobs:
202202
runs-on: ubuntu-22.04
203203
steps:
204204
- name: download all extra reports
205-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
205+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
206206
- name: upload all extra reports
207207
shell: bash {0}
208208
continue-on-error: true
209209
run: |
210210
mkdir -p all_reports
211211
cp -r ./functional_docker_ubuntu_arm64 ./all_reports/
212-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
212+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
213213
with:
214214
name: all_reports
215215
path: all_reports

.github/workflows/sbom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout repository
1414
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1515
- name: Install bom
16-
uses: kubernetes-sigs/release-actions/setup-bom@a30d93cf2aa029e1e4c8a6c79f766aebf429fddb # main
16+
uses: kubernetes-sigs/release-actions/setup-bom@8af7b2a5596dff526de9db59b2c4b8457e9f52a1 # main
1717
- name: Generage SBOM
1818
run: |
1919
bom generate -o minikube_${{github.ref_name}}_sbom.spdx \

.github/workflows/smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
if: matrix.driver == 'vfkit'
113113
run: |
114114
brew install vfkit
115-
curl -fsSL https://github.com/minikube-machine/vmnet-helper/releases/latest/download/install.sh | bash -s
115+
curl -fsSL https://github.com/minikube-machine/vmnet-helper/releases/latest/download/install.sh | sudo VMNET_INTERACTIVE=0 bash
116116
- name: Install qemu and socket_vmnet (macos)
117117
if: matrix.os == 'macos-13' && matrix.driver == 'qemu'
118118
run: |

.github/workflows/unit-test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches: [ master ]
66
paths:
7+
- .github/workflows/unit-test.yml
78
- go.mod
89
- '**/*.go'
910
- Makefile
@@ -13,6 +14,7 @@ on:
1314
- '!**/*.json'
1415
pull_request:
1516
paths:
17+
- .github/workflows/unit-test.yml
1618
- go.mod
1719
- '**/*.go'
1820
- Makefile
@@ -35,21 +37,21 @@ jobs:
3537
strategy:
3638
fail-fast: false
3739
matrix:
38-
os: [ubuntu-22.04, macos-13, windows-2022]
40+
os: [ubuntu-22.04, macos-15, windows-2022]
3941
runs-on: ${{ matrix.os }}
4042
steps:
4143
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
4244
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00
4345
with:
4446
go-version: ${{env.GO_VERSION}}
45-
cache: true
47+
cache: true
4648
- name: Download Dependencies
4749
run: go mod download
4850
# needed because pkg/drivers/kvm/domain.go:28:2:
4951
- name: Install libvirt (Linux)
5052
if: runner.os == 'Linux'
5153
run: |
52-
sudo apt-get update
54+
sudo apt-get update
5355
sudo apt-get install -y libvirt-dev
5456
- name: Install make (Windows)
5557
if: runner.os == 'Windows'

.github/workflows/update-amd-gpu-device-plugin-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: "update-amd-gpu-device-plugin-version"
22
on:
33
workflow_dispatch:
44
schedule:
5-
# every Monday at around 3 am pacific/10 am UTC
6-
- cron: "0 10 * * 1"
5+
# every Saturday at 1:00 Pacific/8:00 UTC
6+
- cron: "0 8 * * 6"
77
env:
88
GOPROXY: https://proxy.golang.org
99
GO_VERSION: '1.24.6'

.github/workflows/update-calico-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: "update-calico-version"
22
on:
33
workflow_dispatch:
44
schedule:
5-
# every Monday at around 3 am pacific/10 am UTC
6-
- cron: "0 10 * * 1"
5+
# every Saturday at 1:00 Pacific/8:00 UTC
6+
- cron: "0 8 * * 6"
77
env:
88
GOPROXY: https://proxy.golang.org
99
GO_VERSION: '1.24.6'

0 commit comments

Comments
 (0)