From 6597ef5c1300fe08efa6bc75e6141f7153e2b4cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kowalski?= Date: Wed, 27 Mar 2024 22:16:57 +0100 Subject: [PATCH] Update action.yml (#12) Bump version of pnpm action as nodejs 16 that v2 is run on is deprecated, which results in warnings: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: pnpm/action-setup@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f7570dd..8ce2e2d 100644 --- a/action.yml +++ b/action.yml @@ -112,7 +112,7 @@ runs: # - no support for cache # (that's provided by setup-node) - name: 'Install pnpm' - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: ${{ steps.resolved-pnpm.outputs.version }} run_install: false