From 14b64160a07619e895c2632d09cd142066c88ede Mon Sep 17 00:00:00 2001 From: Ivan Zhakov Date: Tue, 20 Aug 2024 10:36:26 +0000 Subject: [PATCH] On '1.7.x' branch: Merge r1917208 from trunk: * .github/workflows/*: Use actions/checkout@v4 instead of actions/checkout@v3. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1920058 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 a8d452e62f..101bc34c76 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -49,7 +49,7 @@ jobs: steps: - name: Install prerequisites run: sudo apt-get install libtool libtool-bin - - 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 8647702a5d..3fa32f20b2 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 aabc0ac3d3..80062e2c8b 100644 --- a/.github/workflows/windows-vcpkg.yml +++ b/.github/workflows/windows-vcpkg.yml @@ -38,7 +38,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.