svn commit: r1935562 - in apr/apr/branches/1.8.x: . .github/workflows
[email protected] Tue, 23 Jun 2026 01:51:45 -0000
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <178217950539.92171.12447058258778300962@svn03-he-fi> |
Author: brane
Date: Tue Jun 23 01:51:45 2026
New Revision: 1935562
Log:
Merged r1935352 from trunk:
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/branches/1.8.x/ (props changed)
apr/apr/branches/1.8.x/.github/workflows/linux.yml
apr/apr/branches/1.8.x/.github/workflows/macos.yml
apr/apr/branches/1.8.x/.github/workflows/windows.yml
Modified: apr/apr/branches/1.8.x/.github/workflows/linux.yml
==============================================================================
--- apr/apr/branches/1.8.x/.github/workflows/linux.yml Tue Jun 23 01:51:08 2026 (r1935561)
+++ apr/apr/branches/1.8.x/.github/workflows/linux.yml Tue Jun 23 01:51:45 2026 (r1935562)
@@ -57,7 +57,7 @@ jobs:
steps:
- name: Install prerequisites
run: sudo apt-get install libtool libtool-bin
- - 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/branches/1.8.x/.github/workflows/macos.yml
==============================================================================
--- apr/apr/branches/1.8.x/.github/workflows/macos.yml Tue Jun 23 01:51:08 2026 (r1935561)
+++ apr/apr/branches/1.8.x/.github/workflows/macos.yml Tue Jun 23 01:51:45 2026 (r1935562)
@@ -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/branches/1.8.x/.github/workflows/windows.yml
==============================================================================
--- apr/apr/branches/1.8.x/.github/workflows/windows.yml Tue Jun 23 01:51:08 2026 (r1935561)
+++ apr/apr/branches/1.8.x/.github/workflows/windows.yml Tue Jun 23 01:51:45 2026 (r1935562)
@@ -25,7 +25,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- - 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.