Skip to content

Commit b4d7c6f

Browse files
committed
ci: test in ubuntu 22.04
1 parent 590279d commit b4d7c6f

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/readme_example.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
k8s-test:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414
steps:
1515
# GitHub Action reference: https://github.com/jupyterhub/action-k3s-helm
1616
- name: Start a local k8s cluster
@@ -21,8 +21,8 @@ jobs:
2121
# - k3s versions at https://github.com/k3s-io/k3s/tags
2222
# - helm versions at https://github.com/helm/helm/tags
2323
k3s-channel: latest
24-
# k3s-version: v1.22.2+k3s1
25-
# helm-version: v3.7.0
24+
# k3s-version: v1.29.0+k3s1
25+
# helm-version: v3.13.0
2626

2727
- name: Verify function of k8s, kubectl, and helm
2828
run: |

.github/workflows/test_k3s.yml

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

1414
jobs:
1515
test_install_k3s:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
name: Test K3s and Helm
1818
strategy:
1919
fail-fast: false

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ on:
3737

3838
jobs:
3939
k8s-test:
40-
runs-on: ubuntu-20.04
40+
runs-on: ubuntu-22.04
4141
steps:
4242
# GitHub Action reference: https://github.com/jupyterhub/action-k3s-helm
4343
- name: Start a local k8s cluster
@@ -48,8 +48,8 @@ jobs:
4848
# - k3s versions at https://github.com/k3s-io/k3s/tags
4949
# - helm versions at https://github.com/helm/helm/tags
5050
k3s-channel: latest
51-
# k3s-version: v1.22.2+k3s1
52-
# helm-version: v3.7.0
51+
# k3s-version: v1.29.0+k3s1
52+
# helm-version: v3.13.0
5353

5454
- name: Verify function of k8s, kubectl, and helm
5555
run: |

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,16 @@ outputs:
5656
description: Path to kubeconfig file
5757
value: ${{ steps.set-output.outputs.kubeconfig }}
5858
k3s-version:
59-
description: "Installed k3s version, such as v1.20.0+k3s2"
59+
description: "Installed k3s version, such as v1.29.0+k3s1"
6060
value: "${{ steps.set-output.outputs.k3s-version }}"
6161
k8s-version:
62-
description: "Installed k8s version, such as v1.20.0"
62+
description: "Installed k8s version, such as v1.29.0"
6363
value: "${{ steps.set-output.outputs.k8s-version }}"
6464
calico-version:
65-
description: "Installed calico version, such as v3.20.2"
65+
description: "Installed calico version, such as v3.27.0"
6666
value: "${{ steps.set-output.outputs.calico-version }}"
6767
helm-version:
68-
description: "Installed helm version, such as v3.4.2"
68+
description: "Installed helm version, such as v3.13.0"
6969
value: "${{ steps.set-output.outputs.helm-version }}"
7070

7171
runs:

0 commit comments

Comments
 (0)