From 06d9a0ece9bdaf651a335b06e4301e1bafe766ec Mon Sep 17 00:00:00 2001 From: Ty Lamontagne Date: Sat, 6 Apr 2024 17:27:32 -0400 Subject: [PATCH] chore: Update actions/checkout to v4 --- .github/workflows/branch-build.yml | 2 +- .github/workflows/master-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/branch-build.yml b/.github/workflows/branch-build.yml index d96c3e2..04e3fff 100644 --- a/.github/workflows/branch-build.yml +++ b/.github/workflows/branch-build.yml @@ -14,7 +14,7 @@ jobs: run: sudo apt update && sudo apt install -y gcc-12 g++-12 make ragel lemon cmake - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure CMake run: CC=gcc-12 CXX=g++-12 cmake -DDISABLE_CLANG_TIDY=YES -B ${{github.workspace}}/build diff --git a/.github/workflows/master-release.yml b/.github/workflows/master-release.yml index 9a1e20c..71003e8 100644 --- a/.github/workflows/master-release.yml +++ b/.github/workflows/master-release.yml @@ -23,7 +23,7 @@ jobs: run: sudo apt update && sudo apt install -y gcc-12 g++-12 build-essential ragel lemon cmake - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - run: git fetch --tags - name: Configure CMake