Skip to content

Commit 62006ac

Browse files
Merge pull request #13 from kubernetes/master
[pull] master from kubernetes:master
2 parents 5e60432 + 8e81f8d commit 62006ac

File tree

197 files changed

+7278
-5995
lines changed

Some content is hidden

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

197 files changed

+7278
-5995
lines changed

.github/workflows/build.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ on:
1212
- "!deploy/iso/**"
1313
env:
1414
GOPROXY: https://proxy.golang.org
15-
GO_VERSION: '1.22.4'
15+
GO_VERSION: '1.22.5'
1616
permissions:
1717
contents: read
1818

1919
jobs:
2020
build_minikube:
21-
runs-on: ubuntu-20.04
21+
runs-on: ubuntu-22.04
2222
steps:
2323
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
24-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
24+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
2525
with:
2626
go-version: ${{env.GO_VERSION}}
2727
- name: Download Dependencies
@@ -39,15 +39,15 @@ jobs:
3939
echo workspace $GITHUB_WORKSPACE
4040
echo "end of debug stuff"
4141
echo $(which jq)
42-
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
42+
- uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029
4343
with:
4444
name: minikube_binaries
4545
path: out
4646
lint:
47-
runs-on: ubuntu-20.04
47+
runs-on: ubuntu-22.04
4848
steps:
4949
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
50-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
50+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
5151
with:
5252
go-version: ${{env.GO_VERSION}}
5353
- name: Install libvirt
@@ -62,10 +62,10 @@ jobs:
6262
run: make test
6363
continue-on-error: false
6464
unit_test:
65-
runs-on: ubuntu-20.04
65+
runs-on: ubuntu-22.04
6666
steps:
6767
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
68-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
68+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
6969
with:
7070
go-version: ${{env.GO_VERSION}}
7171
- name: Install libvirt

.github/workflows/docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ on:
66
- master
77
env:
88
GOPROXY: https://proxy.golang.org
9-
GO_VERSION: '1.22.4'
9+
GO_VERSION: '1.22.5'
1010
permissions:
1111
contents: read
1212

1313
jobs:
1414
generate-docs:
1515
if: github.repository == 'kubernetes/minikube'
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-22.04
1717
steps:
1818
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
19-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
19+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
2020
with:
2121
go-version: ${{env.GO_VERSION}}
2222
- name: Generate Docs

.github/workflows/functional_verified.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
- deleted
2323
env:
2424
GOPROXY: https://proxy.golang.org
25-
GO_VERSION: '1.22.4'
25+
GO_VERSION: '1.22.5'
2626

2727
permissions:
2828
contents: read
@@ -32,10 +32,10 @@ jobs:
3232
# builds the minikube binaries
3333
build_minikube:
3434
if: contains(github.event.pull_request.labels.*.name, 'ok-to-test')
35-
runs-on: ubuntu-20.04
35+
runs-on: ubuntu-22.04
3636
steps:
3737
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
38-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
38+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
3939
with:
4040
go-version: ${{env.GO_VERSION}}
4141
- name: Download Dependencies
@@ -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@65462800fd760344b1a7b4382951275a0abb4808
49+
- uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029
5050
with:
5151
name: minikube_binaries
5252
path: out
@@ -61,7 +61,7 @@ jobs:
6161
GOPOGH_RESULT: ""
6262
SHELL: "/bin/bash" # To prevent https://github.com/kubernetes/minikube/issues/6643
6363
steps:
64-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
64+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
6565
with:
6666
cache: false
6767
go-version: ${{env.GO_VERSION}}
@@ -118,7 +118,7 @@ jobs:
118118
hostname || true
119119
echo "--------------------------"
120120
- name: Download Binaries
121-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
121+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
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@65462800fd760344b1a7b4382951275a0abb4808
168+
- uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029
169169
with:
170170
name: functional_docker_ubuntu_arm64
171171
path: minikube_binaries/report
@@ -199,17 +199,17 @@ jobs:
199199
[
200200
functional_docker_ubuntu_arm64,
201201
]
202-
runs-on: ubuntu-20.04
202+
runs-on: ubuntu-22.04
203203
steps:
204204
- name: download all extra reports
205-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
205+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
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@65462800fd760344b1a7b4382951275a0abb4808
212+
- uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029
213213
with:
214214
name: all_reports
215215
path: all_reports

.github/workflows/hide-minikube-bot-comments.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
jobs:
77
hide-comments:
88
if: ${{ github.event.issue.pull_request }}
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- uses: spowelljr/hide-minikube-bot-comments@7d9688dd9b7fce605c24be174110c344728160de
1212
with:

.github/workflows/leaderboard.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ on:
66
- 'v*-beta.*'
77
env:
88
GOPROXY: https://proxy.golang.org
9-
GO_VERSION: '1.22.4'
9+
GO_VERSION: '1.22.5'
1010
permissions:
1111
contents: read
1212

1313
jobs:
1414
update-leaderboard:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-22.04
1616
steps:
1717
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
18-
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
18+
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
1919
with:
2020
go-version: ${{env.GO_VERSION}}
2121
- name: Update Leaderboard

0 commit comments

Comments
 (0)