From ec3b1fe0a463d949b9ff7faa3e126650cbf49cae Mon Sep 17 00:00:00 2001 From: matan engber Date: Sun, 15 Dec 2024 13:39:47 +0200 Subject: [PATCH] EE-1467: use runner ubuntu-24.04 instead of ubuntu-latest --- .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 c5dbc04..4bfeb84 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ on: - master jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: # https://github.com/actions/checkout - name: Checkout @@ -31,7 +31,7 @@ jobs: run: npm run fmtcheck integration: if: github.event_name == 'push' - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v2