From bd645e727e7aee322d6884cdb90b18686a9b6f4b Mon Sep 17 00:00:00 2001 From: Graham Gilchrist Date: Wed, 3 Apr 2024 19:51:45 +0100 Subject: [PATCH 1/2] run ubuntu 20.04 on github actions --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 56e9201..25c8427 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ env: jobs: linting: name: Linting - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Install NodeJS uses: actions/setup-node@v2 From 3e2b3214e793e010a05ddc7612e1ced592670349 Mon Sep 17 00:00:00 2001 From: Graham Gilchrist Date: Wed, 3 Apr 2024 19:54:36 +0100 Subject: [PATCH 2/2] use node v9 in github actions --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 25c8427..0b1754e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,12 +8,12 @@ on: - master env: - NODE_VERSION: 14 + NODE_VERSION: 9 jobs: linting: name: Linting - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Install NodeJS uses: actions/setup-node@v2