From 63650bdf34ba90c6469a3a47c48a467af48b3531 Mon Sep 17 00:00:00 2001 From: Ivan Zhakov Date: Sat, 20 Apr 2024 12:49:10 +0000 Subject: [PATCH] * .github/workflows/*: Use actions/checkout@v4 instead of actions/checkout@v3. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1917208 13f79535-47bb-0310-9956-ffa450edef68 --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- .github/workflows/windows-vcpkg.yml | 2 +- .github/workflows/windows.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9768d9d3da..7393f926a6 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -62,7 +62,7 @@ jobs: steps: - name: Install prerequisites run: sudo apt-get install libtool libtool-bin ${{ matrix.packages }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917 - name: Workaround ASAN issue in Ubuntu 22.04 runners run: sudo sysctl vm.mmap_rnd_bits=28 diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index f9f0bc296c..b7f36abe3b 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -22,7 +22,7 @@ jobs: NOTEST_CFLAGS: ${{ matrix.notest-cflags }} name: ${{ matrix.name }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: buildconf run: ./buildconf - name: configure diff --git a/.github/workflows/windows-vcpkg.yml b/.github/workflows/windows-vcpkg.yml index 0be82a54d3..f0f57b9bc3 100644 --- a/.github/workflows/windows-vcpkg.yml +++ b/.github/workflows/windows-vcpkg.yml @@ -37,7 +37,7 @@ jobs: core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Vcpkg Install run: C:\vcpkg\vcpkg.exe install ${{ matrix.port }} --head --overlay-ports ${{ github.workspace }}\build\vcpkg --triplet ${{ matrix.triplet }} --enforce-port-checks diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 6f38685eea..8a3d1659db 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -26,7 +26,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.