From 602374a0a4bebc0a45070b104d60e166a6f31f00 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 30 Aug 2021 18:24:48 +0530 Subject: [PATCH] ci: switch to latest LTS Ubuntu version --- .github/workflows/patch.yml | 2 +- .github/workflows/server-tests.yml | 4 ++-- .github/workflows/translation_linter.yml | 22 ---------------------- .github/workflows/ui-tests.yml | 2 +- 4 files changed, 4 insertions(+), 26 deletions(-) delete mode 100644 .github/workflows/translation_linter.yml diff --git a/.github/workflows/patch.yml b/.github/workflows/patch.yml index f65b0001fe..e6544816de 100644 --- a/.github/workflows/patch.yml +++ b/.github/workflows/patch.yml @@ -10,7 +10,7 @@ on: jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest timeout-minutes: 60 name: Patch Test diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index 0a73d74d6b..7af0d02f21 100644 --- a/.github/workflows/server-tests.yml +++ b/.github/workflows/server-tests.yml @@ -14,7 +14,7 @@ on: jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest timeout-minutes: 60 strategy: @@ -113,7 +113,7 @@ jobs: name: Coverage Wrap Up needs: test container: python:3-slim - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Clone uses: actions/checkout@v2 diff --git a/.github/workflows/translation_linter.yml b/.github/workflows/translation_linter.yml deleted file mode 100644 index 4becaebd6b..0000000000 --- a/.github/workflows/translation_linter.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Frappe Linter -on: - pull_request: - branches: - - develop - - version-12-hotfix - - version-11-hotfix -jobs: - check_translation: - name: Translation Syntax Check - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - - name: Setup python3 - uses: actions/setup-python@v1 - with: - python-version: 3.6 - - name: Validating Translation Syntax - run: | - git fetch origin $GITHUB_BASE_REF:$GITHUB_BASE_REF -q - files=$(git diff --name-only --diff-filter=d $GITHUB_BASE_REF) - python $GITHUB_WORKSPACE/.github/helper/translation.py $files diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 0ece0d8ee6..3520f5ca09 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -8,7 +8,7 @@ on: jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest timeout-minutes: 60 strategy: