From 3129eecbf84c7fb29ea52a2647099ddb78ec9822 Mon Sep 17 00:00:00 2001 From: Svyat Sobol Date: Sun, 19 Nov 2023 12:55:16 +0200 Subject: [PATCH] chore: Update runner image in ci.yml --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ea2755..028daa0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ env: jobs: check-types: name: Check Types - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v1 - name: Setup Node @@ -27,7 +27,7 @@ jobs: run: yarn ts lint: name: Run Linter - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v1 - name: Setup Node @@ -40,7 +40,7 @@ jobs: run: yarn lint tests: name: Run Tests - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v1 - name: Setup Node @@ -54,7 +54,7 @@ jobs: create_release: name: Create Release if: success() && startsWith(github.ref, 'refs/tags/v') - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 needs: [check-types, lint, tests] steps: - uses: actions/checkout@v1 @@ -74,7 +74,7 @@ jobs: axios-better-stacktrace-*.tgz publish: name: Publish Release - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 needs: [create_release] steps: - uses: actions/checkout@v1