svn commit: r1935352 - apr/apr/trunk/.github/workflows
[email protected] Mon, 15 Jun 2026 14:01:15 -0000
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <178153207584.2031360.13966396401373283723@svn03-he-fi> |
Author: brane
Date: Mon Jun 15 14:01:15 2026
New Revision: 1935352
Log:
Upgrade GitHub workflows to use actions/checkout@v6 to avoid these warnings:
Node.js 20 actions are deprecated. The following actions are running
on Node.js 20 and may not work as expected: actions/checkout@v4.
Actions will be forced to run with Node.js 24 by default starting
June 16th, 2026. Node.js 20 will be removed from the runner on
September 16th, 2026.
Modified:
apr/apr/trunk/.github/workflows/linux.yml
apr/apr/trunk/.github/workflows/macos.yml
apr/apr/trunk/.github/workflows/windows-vcpkg.yml
apr/apr/trunk/.github/workflows/windows.yml
Modified: apr/apr/trunk/.github/workflows/linux.yml
==============================================================================
--- apr/apr/trunk/.github/workflows/linux.yml Mon Jun 15 13:45:27 2026 (r1935351)
+++ apr/apr/trunk/.github/workflows/linux.yml Mon Jun 15 14:01:15 2026 (r1935352)
@@ -99,7 +99,7 @@ jobs:
steps:
- name: Install prerequisites
run: sudo apt-get install libtool libtool-bin ${{ matrix.packages }}
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
# 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
Modified: apr/apr/trunk/.github/workflows/macos.yml
==============================================================================
--- apr/apr/trunk/.github/workflows/macos.yml Mon Jun 15 13:45:27 2026 (r1935351)
+++ apr/apr/trunk/.github/workflows/macos.yml Mon Jun 15 14:01:15 2026 (r1935352)
@@ -25,7 +25,7 @@ jobs:
steps:
- name: Install prerequisites
run: brew install libtool autoconf make bash
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
- name: buildconf
run: ./buildconf
- name: configure
Modified: apr/apr/trunk/.github/workflows/windows-vcpkg.yml
==============================================================================
--- apr/apr/trunk/.github/workflows/windows-vcpkg.yml Mon Jun 15 13:45:27 2026 (r1935351)
+++ apr/apr/trunk/.github/workflows/windows-vcpkg.yml Mon Jun 15 14:01:15 2026 (r1935352)
@@ -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@v4
+ - uses: actions/checkout@v6
- name: Vcpkg Install
run: C:\vcpkg\vcpkg.exe install ${{ matrix.port }} --head --overlay-ports ${{ github.workspace }}\build\vcpkg --triplet ${{ matrix.triplet }} --enforce-port-checks
Modified: apr/apr/trunk/.github/workflows/windows.yml
==============================================================================
--- apr/apr/trunk/.github/workflows/windows.yml Mon Jun 15 13:45:27 2026 (r1935351)
+++ apr/apr/trunk/.github/workflows/windows.yml Mon Jun 15 14:01:15 2026 (r1935352)
@@ -142,7 +142,7 @@ jobs:
if: ${{ matrix.packages != '' }}
run: vcpkg install --triplet ${{ matrix.triplet }} ${{ matrix.packages }}
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
- 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.