From 8363f2829335f38effc0e8d82853e2ed4bccd3f4 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 6 May 2024 16:43:29 -0400 Subject: [PATCH] Call the node action instead directly --- action.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 60c0bf5..2f8b0bd 100644 --- a/action.yml +++ b/action.yml @@ -141,10 +141,9 @@ runs: echo "GIT_AUTHOR_EMAIL=<${{ inputs.git-author-email }}>" >> $GITHUB_ENV echo "GIT_COMMITTER_NAME=${{ inputs.git-committer-name }}" >> $GITHUB_ENV echo "GIT_COMMITTER_EMAIL=<${{ inputs.git-committer-email }}>" >> $GITHUB_ENV - - name: Run update-flake-lock.sh - runs: - using: node20 - main: dist/index.js + - name: Run update-flake-lock + shell: bash + run: node "$GITHUB_ACTION_PATH/dist/index.js" - name: Save PR Body as file uses: DamianReeves/write-file-action@v1.3 with: