From 574fbc214391d02e982322aa4fa85cce5d1ce544 Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Wed, 25 Jan 2023 00:44:53 -0500 Subject: [PATCH] fix: make action run using node16 --- action.yaml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/action.yaml b/action.yaml index da233a8..d65e47d 100644 --- a/action.yaml +++ b/action.yaml @@ -13,17 +13,6 @@ inputs: description: A base64 encoded reference to your authorization file (~/.kube/config) required: true runs: - using: composite - steps: - - run: echo "${{ github.action_path }}" >> $GITHUB_PATH - shell: bash - - name: Configure kubectl CLI - run: setup-kubectl.sh - shell: bash - env: - KUBECTL_VERSION: ${{ inputs.kubectl-version }} - - name: Authorize kubectl to the cluster - run: login-kubectl.sh - shell: bash - env: - BASE64_KUBE_CONFIG: ${{ inputs.base64-kube-config }} + using: node16 + main: dist/index.js + post: dist/post.js