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.
This commit is contained in:
Senén Rodero Rodríguez
2022-08-22 16:46:56 +02:00
parent 6f060d46d0
commit 33d288f230

View File

@@ -12,7 +12,7 @@ permissions:
jobs: jobs:
tests: tests:
runs-on: ubuntu-18.04 runs-on: ubuntu-latest
timeout-minutes: 60 timeout-minutes: 60
services: services:
postgres: postgres:
@@ -65,7 +65,7 @@ jobs:
coveralls: coveralls:
permissions: permissions:
contents: none contents: none
runs-on: ubuntu-18.04 runs-on: ubuntu-latest
needs: tests needs: tests
env: env:
CI_BUILD_NUMBER: ${{ github.run_number }} CI_BUILD_NUMBER: ${{ github.run_number }}