Skip to content

Commit

Permalink
Fixed compilation issue:
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
end2endzone committed Aug 3, 2024
1 parent 9da47b3 commit 22efe59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand All @@ -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
Expand Down

0 comments on commit 22efe59

Please sign in to comment.