patch 'ci: update versions of actions in GHA' has been queued to stable release 24.11.7

luca.boccassi at gmail.com luca.boccassi at gmail.com
Thu Jun 11 15:20:15 CEST 2026


Hi,

FYI, your patch has been queued to stable release 24.11.7

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 06/13/26. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Queued patches are on a temporary branch at:
https://github.com/bluca/dpdk-stable

This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/baee9b88b44cff33af13be309a06b3680799a432

Thanks.

Luca Boccassi

---
>From baee9b88b44cff33af13be309a06b3680799a432 Mon Sep 17 00:00:00 2001
From: David Marchand <david.marchand at redhat.com>
Date: Mon, 11 May 2026 18:11:16 +0200
Subject: [PATCH] ci: update versions of actions in GHA

[ upstream commit 014a800172148227a0fcc94bdda7391539e873c3 ]

GitHub started deprecating GHA actions based on Node 20.
For now, only warnings are raised, but we can switch to more recent
versions of the common actions, now:
- cache v5
- checkout v6
- upload-artifact v7
- setup-python v6

Link: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/

Signed-off-by: David Marchand <david.marchand at redhat.com>
---
 .github/workflows/build.yml | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f39634d967..e424cfeb6b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -21,7 +21,7 @@ jobs:
     runs-on: ubuntu-24.04
     steps:
     - name: Checkout sources
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
       with:
         fetch-depth: 0
     - name: Check patches
@@ -95,7 +95,7 @@ jobs:
 
     steps:
     - name: Checkout sources
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
     - name: Generate cache keys
       id: get_ref_keys
       run: |
@@ -103,7 +103,7 @@ jobs:
         echo 'libabigail=libabigail-${{ env.LIBABIGAIL_VERSION }}-${{ matrix.config.os }}' >> $GITHUB_OUTPUT
         echo 'abi=abi-${{ matrix.config.os }}-${{ matrix.config.compiler }}-${{ matrix.config.cross }}-${{ env.REF_GIT_TAG }}' >> $GITHUB_OUTPUT
     - name: Retrieve ccache cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       with:
         path: ~/.ccache
         key: ${{ steps.get_ref_keys.outputs.ccache }}-${{ github.ref }}
@@ -111,13 +111,13 @@ jobs:
           ${{ steps.get_ref_keys.outputs.ccache }}-refs/heads/main
     - name: Retrieve libabigail cache
       id: libabigail-cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       if: env.ABI_CHECKS == 'true'
       with:
         path: libabigail
         key: ${{ steps.get_ref_keys.outputs.libabigail }}
     - name: Retrieve ABI reference cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       if: env.ABI_CHECKS == 'true'
       with:
         path: reference
@@ -166,7 +166,7 @@ jobs:
       run: .ci/linux-build.sh
     - name: Upload logs on failure
       if: failure()
-      uses: actions/upload-artifact at v4
+      uses: actions/upload-artifact at v7
       with:
         name: meson-logs-${{ join(matrix.config.*, '-') }}
         path: |
@@ -187,9 +187,9 @@ jobs:
 
     steps:
     - name: Checkout sources
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
     - name: Set up Python
-      uses: actions/setup-python at v5
+      uses: actions/setup-python at v6
       with:
         python-version: '3.x'
     - name: Install dependencies
@@ -206,7 +206,7 @@ jobs:
         meson compile -C build
     - name: Upload logs on failure
       if: failure()
-      uses: actions/upload-artifact at v4
+      uses: actions/upload-artifact at v7
       with:
         name: meson-logs-${{ join(matrix.config.*, '-') }}
         path: |
@@ -232,7 +232,7 @@ jobs:
         echo 'image=image-${{ matrix.config.image }}-'$(date -u +%Y-%m-%d) >> $GITHUB_OUTPUT
     - name: Retrieve image cache
       id: image_cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       with:
         path: ~/.image
         key: ${{ steps.get_keys.outputs.image }}
@@ -279,7 +279,7 @@ jobs:
 
     steps:
     - name: Checkout sources
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
     - name: Generate various keys
       id: get_keys
       run: |
@@ -287,7 +287,7 @@ jobs:
         echo 'logs=meson-logs-${{ join(matrix.config.*, '-') }}' | tr -d ':' >> $GITHUB_OUTPUT
     - name: Retrieve image cache
       id: image_cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       with:
         path: ~/.image
         key: ${{ needs.prepare-container-images.outputs.image }}
@@ -297,7 +297,7 @@ jobs:
         echo 'Image ${{ matrix.config.image }} is not cached.'
         false
     - name: Retrieve ccache cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       with:
         path: ~/.ccache
         key: ${{ steps.get_keys.outputs.ccache }}-${{ github.ref }}
@@ -338,7 +338,7 @@ jobs:
       run: docker kill dpdk
     - name: Upload logs on failure
       if: failure()
-      uses: actions/upload-artifact at v4
+      uses: actions/upload-artifact at v7
       with:
         name: ${{ steps.get_keys.outputs.logs }}
         path: |
-- 
2.47.3

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-06-11 14:20:03.942020645 +0100
+++ 0066-ci-update-versions-of-actions-in-GHA.patch	2026-06-11 14:20:01.278747537 +0100
@@ -1 +1 @@
-From 014a800172148227a0fcc94bdda7391539e873c3 Mon Sep 17 00:00:00 2001
+From baee9b88b44cff33af13be309a06b3680799a432 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 014a800172148227a0fcc94bdda7391539e873c3 ]
+
@@ -16,2 +17,0 @@
-Cc: stable at dpdk.org
-
@@ -24 +24 @@
-index b3e2957411..f0ef39d34f 100644
+index f39634d967..e424cfeb6b 100644
@@ -36 +36 @@
-@@ -121,7 +121,7 @@ jobs:
+@@ -95,7 +95,7 @@ jobs:
@@ -45 +45 @@
-@@ -129,7 +129,7 @@ jobs:
+@@ -103,7 +103,7 @@ jobs:
@@ -54 +54 @@
-@@ -137,13 +137,13 @@ jobs:
+@@ -111,13 +111,13 @@ jobs:
@@ -70,2 +70,2 @@
-@@ -195,7 +195,7 @@ jobs:
-         key: ${{ steps.get_ref_keys.outputs.ccache }}-${{ github.ref }}
+@@ -166,7 +166,7 @@ jobs:
+       run: .ci/linux-build.sh
@@ -79 +79 @@
-@@ -216,9 +216,9 @@ jobs:
+@@ -187,9 +187,9 @@ jobs:
@@ -91 +91 @@
-@@ -235,7 +235,7 @@ jobs:
+@@ -206,7 +206,7 @@ jobs:
@@ -100 +100 @@
-@@ -287,7 +287,7 @@ jobs:
+@@ -232,7 +232,7 @@ jobs:
@@ -109 +109 @@
-@@ -331,7 +331,7 @@ jobs:
+@@ -279,7 +279,7 @@ jobs:
@@ -118 +118 @@
-@@ -339,7 +339,7 @@ jobs:
+@@ -287,7 +287,7 @@ jobs:
@@ -127 +127 @@
-@@ -349,7 +349,7 @@ jobs:
+@@ -297,7 +297,7 @@ jobs:
@@ -136 +136 @@
-@@ -388,7 +388,7 @@ jobs:
+@@ -338,7 +338,7 @@ jobs:


More information about the stable mailing list