Skip to content

Commit

Permalink
github actions: upgrade to use node20
Browse files Browse the repository at this point in the history
  • Loading branch information
yookoala committed Feb 1, 2024
1 parent 7fb5261 commit d609506
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@ jobs:
- name: Install Tools for Tests
run: sudo apt-get install -y php-fpm python3 python3-venv
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: 20
- name: Setup Node modules
run: |
cd ./example/nodejs
npm install
cd ../..
- name: Setup Python3
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Setup Python3 modules
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r example/python3/requirements.txt
- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Setup Go modules
Expand Down

0 comments on commit d609506

Please sign in to comment.