Use a specific version of Ubuntu in workflows

Using ubuntu-latest might result in incompatibilities when this image
changes to a different version of Ubuntu. For example, the Ubuntu 24.04
image no longer includes imagemagick, meaning that we'll have to install
it manually when using Ubuntu 24.04.
This commit is contained in:
Javi Martín
2024-10-14 13:47:28 +02:00
parent d3a039040c
commit 26ebe619e3
6 changed files with 7 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ env:
jobs:
tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 60
services:
postgres:
@@ -76,7 +76,7 @@ jobs:
coveralls:
permissions:
contents: none
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: tests
steps:
- name: Finish coveralls