From b06dcd861719a09da2b4f88ae8071fd0aa732887 Mon Sep 17 00:00:00 2001 From: Brent Gardner Date: Mon, 29 May 2023 12:58:20 -0600 Subject: [PATCH] Upgrade node version to fix build in `main` (#794) Upgrade node version to fix build in `main` (#794) --- .github/workflows/rust.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d15c5099a..e15176dfc 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -77,14 +77,20 @@ jobs: runs-on: ubuntu-latest # proprietary github image, not ubuntu:latest container: image: ubuntu:latest # actual ubuntu:latest that ubuntu publishes + env: + DEBIAN_FRONTEND: "noninteractive" steps: - uses: actions/checkout@v3 - name: Install dependencies run: | + cat /etc/*-release apt-get -qq update - apt-get -qq install -y nodejs npm + apt-get -qq upgrade + apt-get -qq install -y curl + curl -fsSL https://deb.nodesource.com/setup_18.x | bash + apt-get -qq update + apt-get -qq install -y nodejs npm install -g yarn - cat /etc/*-release which node which npm which yarn