From 0f76ea85aa1229f4c8594c7b387d7129fbced504 Mon Sep 17 00:00:00 2001 From: Alex Hamlin Date: Sun, 4 Feb 2024 20:40:00 -0800 Subject: [PATCH] Update the main-tests workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit First… what I said about the 4 CPU thing must have happened a few months ago. I know it was 2 CPUs before, and I can find references online to support that, but it seems like my builds got faster around 3 months ago and I never noticed. Anyways, this bumps some of the versions in the main test workflow to better match what the Docker build is doing, and uses the checkout@v4 action on a non-deprecated version of Node.js. --- .github/workflows/main-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main-tests.yml b/.github/workflows/main-tests.yml index 37324f2..a8ce790 100644 --- a/.github/workflows/main-tests.yml +++ b/.github/workflows/main-tests.yml @@ -8,11 +8,11 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go uses: actions/setup-go@v3 with: - go-version: "1.20" + go-version: "1.21" - name: Install libgstreamer1.0-dev run: | sudo apt-get install -y libunwind-dev @@ -23,11 +23,11 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Node uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 20.x - name: Install Packages run: cd client && yarn install --frozen-lockfile - name: Build Client