From 1e60b49663d855d5f1d926aad9be082ec8097f70 Mon Sep 17 00:00:00 2001 From: dvirtz Date: Sun, 10 Sep 2023 20:56:31 +0100 Subject: [PATCH] ci: update to node 18 disable caching due to https://github.com/actions/setup-node/issues/712 --- .github/workflows/main.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a953188..5537e78 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,16 +23,10 @@ jobs: with: fetch-depth: 0 # for commit linting and semantic-release persist-credentials: false - - if: ${{ env.ACT }} - name: Hack container for local development - run: | - curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash - - sudo apt-get install -y nodejs - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 16 - cache: npm + node-version: 18 - uses: actions/setup-python@v4 with: python-version: '3.10' @@ -84,8 +78,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 16 - cache: npm + node-version: 18 - uses: actions/setup-python@v4 with: python-version: '3.10'