From a17bf21ca239858cd9fef7a6f139628ce45eb87f Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Thu, 7 Apr 2022 10:11:09 -0400 Subject: [PATCH] fix: use correct action tag --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1de4742..b9059a4 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ GitHub Action to manage a K8s (Kubernetes) cluster using kubectl. # Usage To use this action, add the following step to your GitHub Action workflow: ```yaml -- uses: tale/kubectl-action@v1 +- uses: tale/kubectl-action@v1.0.0 with: base64-kube-config: ${{ secrets.KUBE_CONFIG }} ``` @@ -13,7 +13,7 @@ Keep in mind that the action expects a base64 encoded string of your Kubernetes It's also possible to specify the version of the [kubectl](https://kubernetes.io/docs/reference/kubectl/) CLI to use. The current default release used by this action is `v1.23.0`. ```yaml -- uses: tale/kubectl-action@v1 +- uses: tale/kubectl-action@v1.0.0 with: base64-kube-config: ${{ secrets.KUBE_CONFIG }} kubectl-version: v1.22.0 @@ -30,7 +30,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: tale/kubectl-action@v1 + - uses: tale/kubectl-action@v1.0.0 with: base64-kube-config: ${{ secrets.KUBE_CONFIG }} - run: kubectl get pods