From bed79cc9a01c0e9b1eb3ec482787bda7b61abce3 Mon Sep 17 00:00:00 2001 From: Guillaume Falourd Date: Thu, 27 Jun 2024 10:06:53 -0300 Subject: [PATCH] Remove Node 16 warnings Github Actions now send warnings when calling actions using Node 16. To prevent those warnings, we should update the internal actions used in our composite action to the latest versions. In this case, the `actions/setup-python`, to v5.1.0 and the `actions/checkout` , to v4. --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index fd1d6b4..0a84937 100644 --- a/action.yaml +++ b/action.yaml @@ -28,10 +28,10 @@ runs: shell: bash - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4.7.1 + uses: actions/setup-python@v5.1.0 with: python-version: '3.10'