From 35cc12110025ae75d913633b91bb12001747305e Mon Sep 17 00:00:00 2001 From: Daniel Wong Date: Sun, 11 Dec 2022 16:49:13 +1100 Subject: [PATCH] Fix Node.js 12 warning - Upgrade checkout and setup-python to v3 which use Node.js 16 --- .github/workflows/pr_compile_scripts.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_compile_scripts.yml b/.github/workflows/pr_compile_scripts.yml index 13ce313..57227c0 100644 --- a/.github/workflows/pr_compile_scripts.yml +++ b/.github/workflows/pr_compile_scripts.yml @@ -13,11 +13,11 @@ jobs: python-version: [3.8] steps: - name: Checkout the repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Setup python (Windows VM is Python 3.7 by default, we need at least Python 3.8) - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }}