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

Kevin Traynor ktraynor at redhat.com
Thu Jul 23 19:15:35 CEST 2026


Hi,

FYI, your patch has been queued to stable release 25.11.3

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 07/27/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/kevintraynor/dpdk-stable

This queued commit can be viewed at:
https://github.com/kevintraynor/dpdk-stable/commit/199bf5cb3a4487a3b2ef59ff6c9eeb431636faa6

Thanks.

Kevin

---
>From 199bf5cb3a4487a3b2ef59ff6c9eeb431636faa6 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 39b4275816..bf1fca5a06 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -22,5 +22,5 @@ jobs:
     steps:
     - name: Checkout sources
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
       with:
         fetch-depth: 0
@@ -122,5 +122,5 @@ jobs:
     steps:
     - name: Checkout sources
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
     - name: Generate cache keys
       id: get_ref_keys
@@ -130,5 +130,5 @@ jobs:
         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
@@ -138,5 +138,5 @@ jobs:
     - name: Retrieve libabigail cache
       id: libabigail-cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       if: env.ABI_CHECKS == 'true'
       with:
@@ -144,5 +144,5 @@ jobs:
         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:
@@ -196,5 +196,5 @@ jobs:
     - 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.*, '-') }}
@@ -217,7 +217,7 @@ 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'
@@ -236,5 +236,5 @@ jobs:
     - 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.*, '-') }}
@@ -288,5 +288,5 @@ jobs:
     - name: Retrieve image cache
       id: image_cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       with:
         path: ~/.image
@@ -331,5 +331,5 @@ jobs:
     steps:
     - name: Checkout sources
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
     - name: Generate various keys
       id: get_keys
@@ -339,5 +339,5 @@ jobs:
     - name: Retrieve image cache
       id: image_cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       with:
         path: ~/.image
@@ -349,5 +349,5 @@ jobs:
         false
     - name: Retrieve ccache cache
-      uses: actions/cache at v4
+      uses: actions/cache at v5
       with:
         path: ~/.ccache
@@ -387,5 +387,5 @@ jobs:
     - 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 }}
-- 
2.55.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-07-23 17:58:00.725642377 +0100
+++ 0072-ci-update-versions-of-actions-in-GHA.patch	2026-07-23 17:57:58.688395873 +0100
@@ -1 +1 @@
-From 014a800172148227a0fcc94bdda7391539e873c3 Mon Sep 17 00:00:00 2001
+From 199bf5cb3a4487a3b2ef59ff6c9eeb431636faa6 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 39b4275816..bf1fca5a06 100644
@@ -93 +93 @@
-@@ -332,5 +332,5 @@ jobs:
+@@ -331,5 +331,5 @@ jobs:
@@ -100 +100 @@
-@@ -340,5 +340,5 @@ jobs:
+@@ -339,5 +339,5 @@ jobs:
@@ -107 +107 @@
-@@ -350,5 +350,5 @@ jobs:
+@@ -349,5 +349,5 @@ jobs:
@@ -114 +114 @@
-@@ -389,5 +389,5 @@ jobs:
+@@ -387,5 +387,5 @@ jobs:



More information about the stable mailing list