From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B8B6843829 for ; Tue, 5 Mar 2024 16:35:14 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B2C8F42D72; Tue, 5 Mar 2024 16:35:14 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 42E1D42686 for ; Tue, 5 Mar 2024 16:35:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1709652912; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=KpaE/B3LUgOoM76lAbY06OqgZ6LZVN6+VnSgyDB+3P4=; b=LQkKQexF3g+6P3TwL4WCIieTgB/fHH+iCxDr3JzZxoM9Gd0feiClXP03jsrWl4sgnwbbVZ 5fFyKZyE5NcAQoappTRSyimlzmIm5kEiANUsg10ALtPBWc4XOvIB9Xz3I1Ll4NK33YVBW/ UQQRyyPINQbSIduhJVhnr0uqzokY/cw= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-696-7KUsxuz9P6ehmxMTug6eFQ-1; Tue, 05 Mar 2024 10:35:11 -0500 X-MC-Unique: 7KUsxuz9P6ehmxMTug6eFQ-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 782D08007A2 for ; Tue, 5 Mar 2024 15:35:11 +0000 (UTC) Received: from rh.redhat.com (unknown [10.39.194.197]) by smtp.corp.redhat.com (Postfix) with ESMTP id ABE7B200AE7F; Tue, 5 Mar 2024 15:35:09 +0000 (UTC) From: Kevin Traynor To: David Marchand Cc: Aaron Conole , dpdk stable Subject: patch 'ci: update versions of actions in GHA' has been queued to stable release 21.11.7 Date: Tue, 5 Mar 2024 15:33:42 +0000 Message-ID: <20240305153449.263666-9-ktraynor@redhat.com> In-Reply-To: <20240305153449.263666-1-ktraynor@redhat.com> References: <20240305153449.263666-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi, FYI, your patch has been queued to stable release 21.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 03/11/24. 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/100a4dc25e56e44bcf65155290321950ad9c90f0 Thanks. Kevin --- >From 100a4dc25e56e44bcf65155290321950ad9c90f0 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Wed, 31 Jan 2024 18:44:36 +0100 Subject: [PATCH] ci: update versions of actions in GHA [ upstream commit 2ea7994ae39ff979b15899ec9eb9c68c944d4b11 ] GitHub started deprecating GHA actions based on Node 16 [1]. For now, only warnings are raised, but we might as well switch to v4 versions of the common actions, now. Link: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ Signed-off-by: David Marchand Acked-by: Aaron Conole --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f1079d840e..12436403bb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,5 +72,5 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Generate cache keys id: get_ref_keys @@ -80,5 +80,5 @@ jobs: echo 'abi=abi-${{ matrix.config.os }}-${{ matrix.config.compiler }}-${{ matrix.config.cross }}-${{ env.LIBABIGAIL_VERSION }}-${{ env.REF_GIT_TAG }}' >> $GITHUB_OUTPUT - name: Retrieve ccache cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.ccache @@ -88,5 +88,5 @@ jobs: - name: Retrieve libabigail cache id: libabigail-cache - uses: actions/cache@v3 + uses: actions/cache@v4 if: env.ABI_CHECKS == 'true' with: @@ -94,5 +94,5 @@ jobs: key: ${{ steps.get_ref_keys.outputs.libabigail }} - name: Retrieve ABI reference cache - uses: actions/cache@v3 + uses: actions/cache@v4 if: env.ABI_CHECKS == 'true' with: @@ -137,5 +137,5 @@ jobs: - name: Upload logs on failure if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: meson-logs-${{ join(matrix.config.*, '-') }} -- 2.43.2 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2024-03-05 14:08:54.960792529 +0000 +++ 0009-ci-update-versions-of-actions-in-GHA.patch 2024-03-05 14:08:54.619520683 +0000 @@ -1 +1 @@ -From 2ea7994ae39ff979b15899ec9eb9c68c944d4b11 Mon Sep 17 00:00:00 2001 +From 100a4dc25e56e44bcf65155290321950ad9c90f0 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 2ea7994ae39ff979b15899ec9eb9c68c944d4b11 ] + @@ -12,2 +13,0 @@ -Cc: stable@dpdk.org - @@ -17,2 +17,2 @@ - .github/workflows/build.yml | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) + .github/workflows/build.yml | 10 +++++----- + 1 file changed, 5 insertions(+), 5 deletions(-) @@ -21 +21 @@ -index 421207c241..776fbf6f30 100644 +index f1079d840e..12436403bb 100644 @@ -24 +24 @@ -@@ -73,5 +73,5 @@ jobs: +@@ -72,5 +72,5 @@ jobs: @@ -31,2 +31,2 @@ -@@ -81,5 +81,5 @@ jobs: - echo 'abi=abi-${{ matrix.config.os }}-${{ matrix.config.compiler }}-${{ matrix.config.cross }}-${{ env.REF_GIT_TAG }}' >> $GITHUB_OUTPUT +@@ -80,5 +80,5 @@ jobs: + echo 'abi=abi-${{ matrix.config.os }}-${{ matrix.config.compiler }}-${{ matrix.config.cross }}-${{ env.LIBABIGAIL_VERSION }}-${{ env.REF_GIT_TAG }}' >> $GITHUB_OUTPUT @@ -38 +38 @@ -@@ -89,5 +89,5 @@ jobs: +@@ -88,5 +88,5 @@ jobs: @@ -45 +45 @@ -@@ -95,5 +95,5 @@ jobs: +@@ -94,5 +94,5 @@ jobs: @@ -52 +52 @@ -@@ -144,5 +144,5 @@ jobs: +@@ -137,5 +137,5 @@ jobs: @@ -59,35 +58,0 @@ -@@ -172,5 +172,5 @@ jobs: - - name: Retrieve image cache - id: image_cache -- uses: actions/cache@v3 -+ uses: actions/cache@v4 - with: - path: ~/.image -@@ -219,5 +219,5 @@ jobs: - steps: - - name: Checkout sources -- uses: actions/checkout@v3 -+ uses: actions/checkout@v4 - - name: Generate various keys - id: get_keys -@@ -227,5 +227,5 @@ jobs: - - name: Retrieve image cache - id: image_cache -- uses: actions/cache@v3 -+ uses: actions/cache@v4 - with: - path: ~/.image -@@ -237,5 +237,5 @@ jobs: - false - - name: Retrieve ccache cache -- uses: actions/cache@v3 -+ uses: actions/cache@v4 - with: - path: ~/.ccache -@@ -277,5 +277,5 @@ jobs: - - name: Upload logs on failure - if: failure() -- uses: actions/upload-artifact@v3 -+ uses: actions/upload-artifact@v4 - with: - name: ${{ steps.get_keys.outputs.logs }}