Skip to content

Commit d8ccf8f

Browse files
bump kind to use v0.17.0 and kubectl v1.25.5 (#73)
* bump kind to use v0.17.0 and kubectl v1.25.5 Signed-off-by: cpanato <ctadeu@gmail.com> * Update action.yml Signed-off-by: David J. M. Karlsen <david@davidkarlsen.com> Signed-off-by: cpanato <ctadeu@gmail.com> Signed-off-by: David J. M. Karlsen <david@davidkarlsen.com> Co-authored-by: David J. M. Karlsen <david@davidkarlsen.com>
1 parent e6cfd90 commit d8ccf8f

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/test.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
1616

1717
- name: Create kind cluster
1818
uses: ./
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
3030

3131
- name: Create kind cluster with custom verbosity
3232
uses: ./
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
4646

4747
- name: Create kind cluster with custom name
4848
uses: ./
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: ubuntu-latest
5959
steps:
6060
- name: Checkout
61-
uses: actions/checkout@v3
61+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
6262

6363
- name: Only install kind without starting a cluster
6464
uses: ./
@@ -73,7 +73,7 @@ jobs:
7373
runs-on: ubuntu-latest
7474
steps:
7575
- name: Checkout
76-
uses: actions/checkout@v3
76+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
7777

7878
- name: Create kind cluster with custom name
7979
uses: ./
@@ -89,7 +89,7 @@ jobs:
8989
runs-on: ubuntu-latest
9090
steps:
9191
- name: Checkout
92-
uses: actions/checkout@v3
92+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
9393

9494
- name: Create kind cluster with custom name
9595
uses: ./

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For more information, reference the GitHub Help Documentation for [Creating a wo
1515

1616
For more information on inputs, see the [API Documentation](https://developer.github.com/v3/repos/releases/#input)
1717

18-
- `version`: The kind version to use (default: `v0.16.0`)
18+
- `version`: The kind version to use (default: `v0.17.0`)
1919
- `config`: The path to the kind config file
2020
- `node_image`: The Docker image for the cluster nodes
2121
- `cluster_name`: The name of the cluster to create (default: `chart-testing`)

action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ branding:
66
icon: box
77
inputs:
88
version:
9-
description: "The kind version to use (default: v0.16.0)"
9+
description: "The kind version to use (default: v0.17.0)"
1010
required: false
11-
default: "v0.16.0"
11+
default: "v0.17.0"
1212
config:
1313
description: "The path to the kind config file"
1414
required: false

kind.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ set -o errexit
1818
set -o nounset
1919
set -o pipefail
2020

21-
DEFAULT_KIND_VERSION=v0.16.0
21+
DEFAULT_KIND_VERSION=v0.17.0
2222
DEFAULT_CLUSTER_NAME=chart-testing
23-
DEFAULT_KUBECTL_VERSION=v1.23.12
23+
DEFAULT_KUBECTL_VERSION=v1.25.5
2424

2525
show_help() {
2626
cat << EOF

0 commit comments

Comments
 (0)