From cd283b3326aa5f71cafe32870b790ba27efae632 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Sun, 14 Jan 2024 16:29:51 +0100 Subject: [PATCH] Update actions/checkout in GitHub Actions to v4 (#82, thanks @striezel) --- .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 8ab7ca8..a32df66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install GCC ${{ matrix.version }} run: sudo apt-get install -y gcc-${{ matrix.version }} g++-${{ matrix.version }} @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Clang ${{ matrix.version }} run: sudo apt-get install -y clang-${{ matrix.version }} @@ -83,7 +83,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Configure tests run: cmake -S . -B build