From 7ca2353b9fd83dcb00231cdc72dd41caecc6ee87 Mon Sep 17 00:00:00 2001 From: Philip Hazel Date: Mon, 11 Mar 2024 17:03:40 +0000 Subject: [PATCH] Update workflow checkout to v4 (from v3) as prompted by warning from github --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e89ea6163..f5b15f0f7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Prepare run: ./autogen.sh @@ -37,7 +37,7 @@ jobs: container: alpine steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup run: apk add --no-cache automake autoconf gcc libtool make musl-dev #musl-locales @@ -68,7 +68,7 @@ jobs: runs-on: macos-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DCMAKE_OSX_ARCHITECTURES='arm64;x86_64' -DCMAKE_C_FLAGS='-Wall -Wextra' -B build @@ -101,7 +101,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DCMAKE_IGNORE_PREFIX_PATH=C:/Strawberry/c -B build -A Win32