From a9c4b61b1f8619e699d3d96c8b20694487265033 Mon Sep 17 00:00:00 2001 From: Martijn Gastkemper Date: Tue, 16 May 2023 11:58:07 +0200 Subject: [PATCH] Upgrade to Ubuntu latest --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12b9356..49ae47e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: eslint: name: Eslint - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -21,7 +21,7 @@ jobs: prettier: name: Prettier - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 @@ -33,7 +33,7 @@ jobs: tests: name: Run unit tests - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 @@ -45,7 +45,7 @@ jobs: notification: name: Slack notification - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest if: ${{ always() && github.actor != 'dependabot[bot]' }} needs: [eslint, prettier, tests]