From 58ca0201521ee1fd420ff2b2f667b8802be46dc2 Mon Sep 17 00:00:00 2001 From: Patrick Sullivan Date: Sun, 15 Sep 2024 23:31:11 -0400 Subject: [PATCH] fix: Resolve issue during version determination --- .github/renovate.json | 10 +++------- action.yml | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 77b3972..ee90ddc 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,8 +1,4 @@ { - "extends": [ - "config:base" - ], - "labels": [ - "bump:patch" - ] - } \ No newline at end of file + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>storm-software/renovate-config"] +} diff --git a/action.yml b/action.yml index a43cdad..6a982ab 100644 --- a/action.yml +++ b/action.yml @@ -58,7 +58,7 @@ runs: working-directory: ${{ inputs.working-directory }} run: | PNPM_VERSION=${PNPM_VERSION:-7.30.5} - PKG_JSON=$(cat package.json | jq -r '.package-manager' | awk -F@ '{print $2}') + PKG_JSON=$(cat package.json | jq -r '.packageManager' | awk -F@ '{print $2}') if [ ! -z $PKG_JSON ]; then PNPM_VERSION=$PKG_JSON fi