From a2a2a972f75b3e3031501c180f75ebe28d5024de Mon Sep 17 00:00:00 2001 From: matan engber Date: Sun, 15 Dec 2024 13:19:45 +0200 Subject: [PATCH] EE-1467: use runner ubuntu-22.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..ac240b4 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-22.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-22.04 steps: - name: Checkout uses: actions/checkout@v2