|SUCCESS| ci: update versions of actions in GHA
dpdklab at iol.unh.edu
dpdklab at iol.unh.edu
Mon May 11 22:15:23 CEST 2026
Test-Label: ai-code-review
Test-Status: SUCCESS
https://dpdk.org/patch/163909
_AI Code Review_
=== Patch Review: series.patch (via Claude) ===
Review date: 2026-05-11
Commit: (git sha not available - reviewing patch file)
Author: David Marchand <david.marchand at redhat.com>
Subject: ci: update versions of actions in GHA
This patch updates GitHub Actions workflow dependencies to newer versions
that support Node 22, addressing upcoming deprecation of Node 20-based
actions.
> diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
> index b3e2957411..f0ef39d34f 100644
> --- a/.github/workflows/build.yml
> +++ b/.github/workflows/build.yml
[ ... ]
> @@ -121,7 +121,7 @@ jobs:
>
> steps:
> - name: Checkout sources
> - uses: actions/checkout at v4
> + uses: actions/checkout at v6
The checkout action upgrade looks correct for the version bump.
> - name: Generate cache keys
> id: get_ref_keys
> run: |
> @@ -129,7 +129,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
The cache action upgrade looks correct for the version bump.
[ ... ]
> - name: Retrieve libabigail cache
> id: libabigail-cache
> - uses: actions/cache at v4
> + uses: actions/cache at v5
The cache action upgrade looks correct for the version bump.
[ ... ]
> - name: Retrieve ABI reference cache
> - uses: actions/cache at v4
> + uses: actions/cache at v5
The cache action upgrade looks correct for the version bump.
[ ... ]
> - name: Upload logs on failure
> if: failure()
> - uses: actions/upload-artifact at v4
> + uses: actions/upload-artifact at v7
The upload-artifact action upgrade looks correct for the version bump.
[ ... ]
> - name: Set up Python
> - uses: actions/setup-python at v5
> + uses: actions/setup-python at v6
The setup-python action upgrade looks correct for the version bump.
[ ... ]
This patch performs straightforward version updates of GitHub Actions to
address the upcoming Node 20 deprecation. The changes are mechanical
version bumps with no functional logic changes. All updated actions are
upgraded to their latest stable versions that support Node 22.
More information about the test-report
mailing list