Skip to content

Commit 22e9524

Browse files
committed
ci: change minikube action
Using the one proposed in their official site. See <https://minikube.sigs.k8s.io/docs/tutorials/setup_minikube_in_github_actions/>
1 parent 428cdc1 commit 22e9524

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/component_k8s_e2e.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ on:
44
workflow_call:
55
inputs:
66
scenarios:
7-
description: 'JSON array of test scenarios to run'
7+
description: "JSON array of test scenarios to run"
88
required: false
99
type: string
10-
default: '[]'
10+
default: "[]"
1111
minikube_start_args:
12-
description: 'Arguments to pass to Minikube start command'
12+
description: "Arguments to pass to Minikube start command"
1313
required: false
1414
type: string
15-
default: ''
15+
default: ""
1616
use_latest_flux:
17-
description: 'enables using the latest flux chart'
17+
description: "enables using the latest flux chart"
1818
required: false
1919
type: boolean
2020
default: false
@@ -46,18 +46,18 @@ jobs:
4646
group: ${{ fromJSON(inputs.scenarios) }}
4747
steps:
4848
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
49-
49+
5050
- name: Free up space
5151
run: bash .github/workflows/scripts/space_cleanup.sh
5252

5353
- name: Setup Minikube
54-
uses: manusa/actions-setup-minikube@b589f2d61bf96695c546929c72b38563e856059d # v2.14.0
54+
uses: medyagh/setup-minikube@e9e035a86bbc3caea26a450bd4dbf9d0c453682e # v0.0.21
5555
with:
56-
minikube version: v1.35.0
57-
kubernetes version: "v1.30.14"
58-
start args: ${{ inputs.minikube_start_args }}
56+
minikube-version: v1.35.0
57+
kubernetes-version: "v1.30.14"
58+
start-args: ${{ inputs.minikube_start_args }}
5959
driver: docker
60-
github token: ${{ secrets.GITHUB_TOKEN }}
60+
github-token: ${{ secrets.GITHUB_TOKEN }}
6161

6262
- name: Install Tilt
6363
run: |
@@ -70,8 +70,8 @@ jobs:
7070
7171
- uses: ./.github/actions/rust-cache
7272
with:
73-
identifier: 'test-dev'
74-
restore-strategy: 'nearest'
73+
identifier: "test-dev"
74+
restore-strategy: "nearest"
7575
save-cache: false
7676

7777
- name: Install Zig
@@ -103,7 +103,7 @@ jobs:
103103
name: K8s e2e tests
104104
if: always() # cannot be skipped even if required steps fail
105105
runs-on: ubuntu-latest
106-
needs: [ k8s-e2e-tests ]
106+
needs: [k8s-e2e-tests]
107107
steps:
108108
- name: Check if needed jobs succeeded
109109
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # 05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe

.github/workflows/push_pr_checks_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -313,12 +313,12 @@ jobs:
313313
run: bash .github/workflows/scripts/space_cleanup.sh
314314

315315
- name: Setup Minikube
316-
uses: manusa/actions-setup-minikube@b589f2d61bf96695c546929c72b38563e856059d # v2.14.0
316+
uses: medyagh/setup-minikube@e9e035a86bbc3caea26a450bd4dbf9d0c453682e # v0.0.21
317317
with:
318-
minikube version: v1.35.0
319-
kubernetes version: "v1.30.14"
318+
minikube-version: v1.35.0
319+
kubernetes-version: "v1.30.14"
320320
driver: docker
321-
github token: ${{ secrets.GITHUB_TOKEN }}
321+
github-token: ${{ secrets.GITHUB_TOKEN }}
322322

323323
- name: Install Tilt
324324
run: |

0 commit comments

Comments
 (0)