From 9fd8a09f0d196f446a5aee41d66ae4281040a517 Mon Sep 17 00:00:00 2001 From: Antoine Cotten Date: Wed, 25 May 2022 22:22:33 +0200 Subject: [PATCH] ci: Use GitHub runner based on Ubuntu 22.04 Includes Compose v2. See the full list of included software at https://github.com/actions/virtual-environments/blob/ubuntu22/20220522.1/images/linux/Ubuntu2204-Readme.md --- .github/workflows/ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5fd2bf..34adfee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,8 @@ jobs: test: name: Test suite # List of supported runners: - # https://docs.github.com/en/free-pro-team@latest/actions/reference/specifications-for-github-hosted-runners#supported-runners-and-hardware-resources - runs-on: ubuntu-latest + # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 @@ -26,16 +26,6 @@ jobs: - name: Prepare environment run: | - # Enable support for Compose V2 - # - # Instructions: - # https://docs.docker.com/compose/cli-command/#install-on-linux - - mkdir -p ~/.docker/cli-plugins - curl -sL "https://github.com/docker/compose/releases/latest/download/docker-compose-linux-x86_64" -o ~/.docker/cli-plugins/docker-compose - chmod +x ~/.docker/cli-plugins/docker-compose - docker compose version - # Pre-build container images docker compose \