From 011bac7b4f39b4b334bf4db663e306862e2329f9 Mon Sep 17 00:00:00 2001 From: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Date: Fri, 6 Jan 2023 17:24:29 -0700 Subject: [PATCH] pin nextest to 0.9.47 (#2099) --- .github/workflows/backend.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backend.yaml b/.github/workflows/backend.yaml index f27560813..17bcfa9d3 100644 --- a/.github/workflows/backend.yaml +++ b/.github/workflows/backend.yaml @@ -194,7 +194,9 @@ jobs: if: ${{ matrix.target == 'x86_64' }} - name: Install nextest - uses: taiki-e/install-action@nextest + uses: taiki-e/install-action@v2 + with: + tool: nextest@0.9.47 if: ${{ matrix.target == 'x86_64' }} - name: Download archive @@ -203,7 +205,7 @@ jobs: name: nextest-archive-${{ matrix.target }} - name: Download nextest (aarch64) - run: wget -O nextest-aarch64.tar.gz https://get.nexte.st/latest/linux-arm + run: wget -O nextest-aarch64.tar.gz https://get.nexte.st/0.9.47/linux-arm if: ${{ matrix.target == 'aarch64' }} - name: Run tests