Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update minikube action to get ubuntu 22.04 support #89

Merged
merged 8 commits into from
Jan 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ jobs:
KUBECONFIG: /home/runner/.kube/config
PR_BASE_REF: ${{ github.event.pull_request.base.ref }}
steps:
- name: Install conntrack
run: sudo apt-get install -y conntrack
- id: setup-minikube
name: Setup Minikube
uses: manusa/actions-setup-minikube@v2.4.2
uses: medyagh/setup-minikube@latest
with:
minikube version: 'v1.24.0'
kubernetes version: 'v1.17.8'
minikube-version: 1.24.0
kubernetes-version: 1.22.3
driver: 'none'
timeout-minutes: 3
- uses: actions/checkout@v1
- id: action-npm-build
name: npm install and build
Expand Down Expand Up @@ -51,13 +54,16 @@ jobs:
KUBECONFIG: /home/runner/.kube/config
PR_BASE_REF: ${{ github.event.pull_request.base.ref }}
steps:
- name: Install conntrack
run: sudo apt-get install -y conntrack
- id: setup-minikube
name: Setup Minikube
uses: manusa/actions-setup-minikube@v2.4.2
uses: medyagh/setup-minikube@latest
with:
minikube version: 'v1.24.0'
kubernetes version: 'v1.17.8'
minikube-version: 1.24.0
kubernetes-version: 1.22.3
driver: 'none'
timeout-minutes: 3
- uses: actions/checkout@v1
- id: action-npm-build
name: npm install and build
Expand Down