From 7bbb2129aadc512311f0725cace743c526250ff7 Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Mon, 23 Sep 2024 08:32:59 -0600 Subject: [PATCH] :bug: Fix usage test to Ubuntu 22.04 Problem: - `ubuntu-latest` will be `ubuntu-24.04` imminently, and that version doesn't handle pip in the same way. Solution: - Pin usage test to `ubuntu-22.04`. Note: - When we update to `ubuntu-24.04` for real, we'll probably want to use pipx. We may also need to separate unit test workflows to support older compilers. --- .github/workflows/usage_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/usage_test.yml b/.github/workflows/usage_test.yml index cea8a61e..d601465a 100644 --- a/.github/workflows/usage_test.yml +++ b/.github/workflows/usage_test.yml @@ -16,7 +16,7 @@ env: jobs: usage_test: - runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-latest + runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7