From 31c073fc62827cea95956cb77e0cd2ff85b07956 Mon Sep 17 00:00:00 2001 From: Thomas Beutlich Date: Sat, 28 Oct 2023 15:43:05 +0200 Subject: [PATCH] Bump actions to avoid deprecation warnings --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 29fcd0c..60a75da 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,8 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - + - name: Checkout Code + uses: actions/checkout@v4 + - name: Setup run: sudo apt-get install build-essential libtool-bin @@ -57,7 +58,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Configure (${{ matrix.configuration }}) run: cmake -S . -Bbuild -DCMAKE_BUILD_TYPE=${{ matrix.configuration }}