Skip to content

Commit

Permalink
Update workflow checkout to v4 (from v3) as prompted by warning from …
Browse files Browse the repository at this point in the history
…github
  • Loading branch information
PhilipHazel committed Mar 11, 2024
1 parent 6c670c7 commit 7ca2353
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7ca2353

Please sign in to comment.