From 22efe59a82a5476d9786f303058fb7e70c5994c7 Mon Sep 17 00:00:00 2001 From: Antoine Beauchamp Date: Fri, 2 Aug 2024 20:43:52 -0400 Subject: [PATCH] Fixed compilation issue: The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v3, exuanbo/actions-deploy-gist@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ --- .github/workflows/build_linux.yml | 4 ++-- .github/workflows/build_windows.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index 363b2fd..057a0db 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure GIT working-directory: ${{env.GITHUB_WORKSPACE}} @@ -31,7 +31,7 @@ jobs: git submodule update --init --recursive - name: Setup python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index e54917e..f46003e 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure GIT working-directory: ${{env.GITHUB_WORKSPACE}} @@ -30,7 +30,7 @@ jobs: git submodule update --init --recursive - name: Setup python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified