From 456e7e049461c7de721d91c7b1dcc07511517610 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 10 Feb 2025 14:43:58 -0500 Subject: [PATCH] ci: use versioned build image Make CI more reproducible and prevent non-explicit changes from breaking builds. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f1a49d5..dea9750 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ on: jobs: base: name: base - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: checkout code uses: actions/checkout@v4 @@ -55,7 +55,7 @@ jobs: image: name: ${{ matrix.arch_name.image }} needs: base - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 env: OCI_EXE: docker strategy: