From 883a146d8066dd4a18b08769a3bc9c3ce3f86acd Mon Sep 17 00:00:00 2001 From: NicolasRichel Date: Thu, 28 Mar 2024 11:14:30 +0100 Subject: [PATCH] chore(ci): update to node 20 in github action + remove useless setup-python action --- .github/workflows/main.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c6be2924..90d19412 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,11 +12,8 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "20" check-latest: true - - uses: actions/setup-python@v5 - with: - python-version: "3.10" - name: Setup npm run: npm install npm@latest -g - run: npm ci