From d2f9a8d5820260c619b0cad473c2e03913f8a6a8 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Thu, 1 Dec 2022 15:03:10 +0100 Subject: [PATCH] Update actions/checkout in GitHub Actions to v3 --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 394f31e..355ba9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install GCC ${{ matrix.version }} run: sudo apt-get install -y gcc-${{ matrix.version }} g++-${{ matrix.version }} @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install Clang ${{ matrix.version }} run: sudo apt-get install -y clang-${{ matrix.version }} @@ -80,7 +80,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Configure tests run: cmake -S . -B build @@ -94,4 +94,3 @@ jobs: - name: Run tests working-directory: build run: ctest -C Release --output-on-failure -j 4 -