From 33d288f2300b85704321744827a2a3b6ac8041e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sen=C3=A9n=20Rodero=20Rodr=C3=ADguez?= <15726+Senen@users.noreply.github.com> Date: Mon, 22 Aug 2022 16:46:56 +0200 Subject: [PATCH] Use the latest available Ubuntu image to run tests It is the Ubuntu 20.04 version at the time of writing. Github Actions has deprecated the 18.04 we were using. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 07476e764..0aa81607c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ permissions: jobs: tests: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest timeout-minutes: 60 services: postgres: @@ -65,7 +65,7 @@ jobs: coveralls: permissions: contents: none - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest needs: tests env: CI_BUILD_NUMBER: ${{ github.run_number }}