From b80b64d8ec44f5d1e74974d88982d2285089cf00 Mon Sep 17 00:00:00 2001 From: Dadoum <24679280+Dadoum@users.noreply.github.com> Date: Sun, 22 Dec 2024 09:50:17 +0100 Subject: [PATCH] Use an older Ubuntu versions for GitHub Actions --- .github/workflows/cmake-cross-compile.yml | 4 ++-- .github/workflows/cmake-macos.yml | 4 ++-- .github/workflows/cmake.yml | 2 +- .github/workflows/docker-publish-anisette-server.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cmake-cross-compile.yml b/.github/workflows/cmake-cross-compile.yml index 73efa4c..76aad8d 100644 --- a/.github/workflows/cmake-cross-compile.yml +++ b/.github/workflows/cmake-cross-compile.yml @@ -8,7 +8,7 @@ env: jobs: build-anisette-server-aarch64: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 container: ubuntu:23.04 steps: @@ -40,7 +40,7 @@ jobs: bin/anisette-server-aarch64.dbg build-anisette-server-armv7: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 container: ubuntu:23.04 steps: diff --git a/.github/workflows/cmake-macos.yml b/.github/workflows/cmake-macos.yml index 496a3c0..eecd191 100644 --- a/.github/workflows/cmake-macos.yml +++ b/.github/workflows/cmake-macos.yml @@ -7,7 +7,7 @@ env: jobs: build-anisette-server-macOS-x86_64: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 @@ -64,7 +64,7 @@ jobs: ${{github.workspace}}/bin/anisette-server-macOS-x86_64 build-anisette-server-macOS-arm64: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index fd235e2..a2aa6c3 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -40,7 +40,7 @@ jobs: ${{github.workspace}}/bin/anisette-server-x86_64.dbg build-anisette-server-i686: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 container: ubuntu:23.04 steps: diff --git a/.github/workflows/docker-publish-anisette-server.yml b/.github/workflows/docker-publish-anisette-server.yml index 1b499a3..7132436 100644 --- a/.github/workflows/docker-publish-anisette-server.yml +++ b/.github/workflows/docker-publish-anisette-server.yml @@ -11,7 +11,7 @@ concurrency: jobs: docker: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Set up QEMU uses: docker/setup-qemu-action@v2