From 8c05f5539fd21b7595c2eb1d3763322a5ea72ae3 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Wed, 15 Jun 2022 07:51:28 +0200 Subject: [PATCH] update actions/checkout in GitHub Actions to v3 (#45) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3cd360..9c4c7f3 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