From 7b447ee6add918070c7425c7de90e5c4ec28dbcd Mon Sep 17 00:00:00 2001 From: Arcadiy Ivanov Date: Fri, 9 Feb 2024 00:13:54 -0500 Subject: [PATCH] Update to checkout@v4 and setup-python@v5 for NodeJS 16 deprecation --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 4e05e40..2e9168e 100644 --- a/action.yml +++ b/action.yml @@ -64,11 +64,11 @@ runs: - name: Checkout if: inputs.checkout == 'true' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python if: inputs.install-python == 'true' && (runner.os != 'macOS' || inputs.homebrew-python != 'true') - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '${{ inputs.python-version }}' architecture: '${{ inputs.architecture }}'