From 4784a9c5c5283514d0a778275b457033aeaf5617 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Tue, 20 Feb 2024 17:44:35 +0000 Subject: [PATCH] one more time with ubuntu-latest --- .gitea/workflows/cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/cmake.yml b/.gitea/workflows/cmake.yml index 64875cc..9f28423 100644 --- a/.gitea/workflows/cmake.yml +++ b/.gitea/workflows/cmake.yml @@ -12,13 +12,13 @@ jobs: # well on Windows or Mac. You can convert this to a matrix build if you need # cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: ubuntu + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install Build Tools - run: apt-get update && apt-get -y --no-install-recommends install build-essential clang cmake gdb wget + run: apt-get update && apt-get -y --no-install-recommends install build-essential clang cmake gdb git wget - name: Create Build Environment # Some projects don't allow in-source building, so create a separate build directory