From 73b996a049a48952ac5254884463a642f8e6930c Mon Sep 17 00:00:00 2001 From: Peter De Wachter Date: Mon, 20 Feb 2023 21:26:38 +0100 Subject: [PATCH] Github Actions: checkout@v3 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e4ac0c4..e72ffc2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test" - name: Install packages run: sudo apt install libcups2-dev - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Configure run: cmake . - name: Make @@ -28,7 +28,7 @@ jobs: matrix: compiler: [ clang++, gcc++ ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Configure run: cmake . - name: Make