Skip to content

Commit

Permalink
use nodejs20 instead of 16 (#237)
Browse files Browse the repository at this point in the history
* set job to use nodejs20

* use v3 instead v4

* use v2 instead v3 for nodejs20

* update action to version that support nodejs20

* remove the job that install nodejs20
  • Loading branch information
feng-j678 authored Jan 31, 2024
1 parent c0117be commit dedb1b4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
PYTHONTRACEMALLOC: 1
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
cd ../../extension/tests
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v3.1.5
with:
flags: python39
name: python-39
Expand All @@ -60,9 +60,9 @@ jobs:
needs: codecov-python-39
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Restore Python 2.7 cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: C:\Python27
key: python27-cache
Expand All @@ -75,7 +75,7 @@ jobs:
SETX PATH "%PATH%;C:\Python27"
)
- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: '%UserProfile%\.cache\pip'
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
cd ../../extension/tests
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v3.1.5
with:
flags: python27
name: python-27
Expand Down

0 comments on commit dedb1b4

Please sign in to comment.