Skip to content

Commit

Permalink
Update the main-tests workflow
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ahamlinman committed Feb 5, 2024
1 parent 7c07ab2 commit 0f76ea8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 0f76ea8

Please sign in to comment.