Skip to content

Commit b10d49d

Browse files
authored
Merge pull request #103 from consideRatio/pr/ref4
ci: test with ubuntu:22.04 and relax pin of release action to v2
2 parents d85808f + 47aafd8 commit b10d49d

File tree

5 files changed

+12
-15
lines changed

5 files changed

+12
-15
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/release_updates.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ jobs:
1515
contents: write
1616
steps:
1717
# Action reference: https://github.com/Actions-R-Us/actions-tagger
18-
# NOTE: We pin a version not to have the source code (.ts files), but the
19-
# compiled source code (.js files). This git hash is what v2.0.1
20-
# referenced 30 December 2020.
21-
- uses: Actions-R-Us/actions-tagger@330ddfac760021349fef7ff62b372f2f691c20fb
18+
- uses: Actions-R-Us/actions-tagger@v2
2219
with:
2320
token: "${{ github.token }}"

.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)