From d6095061661cc3472bc3e2705f56a535160fcc8d Mon Sep 17 00:00:00 2001 From: Koala Yeung Date: Thu, 1 Feb 2024 20:16:33 +0800 Subject: [PATCH] github actions: upgrade to use node20 * Upgrade all github actions to use ndoe20 in them: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe98f8a..897a349 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,16 +36,16 @@ 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 @@ -53,7 +53,7 @@ jobs: 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