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 0A71CA00C2 for ; Wed, 23 Nov 2022 19:05:00 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0660742DA3; Wed, 23 Nov 2022 19:05:00 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 6615D42DB9 for ; Wed, 23 Nov 2022 19:04:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1669226696; 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=FnzZ5TtndLjrOjK6sADFqc2qWQdcBzcNfJvyA0Bv3FI=; b=csleUAHMHuHBGZw+vtisBePwUhACqvVTRX8cbcMF2tjYPNvW8OrqTcUqE+bG7tICbvUquu U98+yjZIpaG6yQuFb7X1A9aazovrLz52+A7AYN48FAoSIDxfqU/MjjoS3iLA6ytmkigg/N 87tIxHF+idwdsA9vl1c1tbywkcdsBmw= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-247-TMZNrheZNpOD9a1QAwpypA-1; Wed, 23 Nov 2022 13:04:55 -0500 X-MC-Unique: TMZNrheZNpOD9a1QAwpypA-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id E80D6801585 for ; Wed, 23 Nov 2022 18:04:54 +0000 (UTC) Received: from rh.Home (unknown [10.39.195.16]) by smtp.corp.redhat.com (Postfix) with ESMTP id 65BD1492B07; Wed, 23 Nov 2022 18:04:54 +0000 (UTC) From: Kevin Traynor To: David Marchand Cc: dpdk stable Subject: patch 'ci: bump versions of actions in GHA' has been queued to stable release 21.11.3 Date: Wed, 23 Nov 2022 18:03:39 +0000 Message-Id: <20221123180413.733554-26-ktraynor@redhat.com> In-Reply-To: <20221123180413.733554-1-ktraynor@redhat.com> References: <20221123180413.733554-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 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.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 11/28/22. 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/852ba6cf8429c21ba088e9306fe3913b746bc498 Thanks. Kevin --- >From 852ba6cf8429c21ba088e9306fe3913b746bc498 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Wed, 12 Oct 2022 18:29:41 +0200 Subject: [PATCH] ci: bump versions of actions in GHA [ upstream commit 95da49a9eab3d8c97b7b1d8b047f8c895e3d5fce ] GitHub started deprecating GHA actions based on Node 12 [1]. For now, only warnings are raised, but we might as well switch to v3 versions of the common actions, now. 1: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ Signed-off-by: David Marchand --- .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 2e9c4be6d0..a715a7d455 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,5 +74,5 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Generate cache keys id: get_ref_keys @@ -85,5 +85,5 @@ jobs: echo 'abi-${{ matrix.config.os }}-${{ matrix.config.compiler }}-${{ matrix.config.cross }}-${{ env.LIBABIGAIL_VERSION }}-${{ env.REF_GIT_TAG }}' - name: Retrieve ccache cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache @@ -93,5 +93,5 @@ jobs: - name: Retrieve libabigail cache id: libabigail-cache - uses: actions/cache@v2 + uses: actions/cache@v3 if: env.ABI_CHECKS == 'true' with: @@ -99,5 +99,5 @@ jobs: key: ${{ steps.get_ref_keys.outputs.libabigail }} - name: Retrieve ABI reference cache - uses: actions/cache@v2 + uses: actions/cache@v3 if: env.ABI_CHECKS == 'true' with: @@ -142,5 +142,5 @@ jobs: - name: Upload logs on failure if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: meson-logs-${{ join(matrix.config.*, '-') }} -- 2.38.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2022-11-23 09:55:57.716620842 +0000 +++ 0026-ci-bump-versions-of-actions-in-GHA.patch 2022-11-23 09:55:57.066149299 +0000 @@ -1 +1 @@ -From 95da49a9eab3d8c97b7b1d8b047f8c895e3d5fce Mon Sep 17 00:00:00 2001 +From 852ba6cf8429c21ba088e9306fe3913b746bc498 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 95da49a9eab3d8c97b7b1d8b047f8c895e3d5fce ] + @@ -12,2 +13,0 @@ -Cc: stable@dpdk.org - @@ -16,2 +16,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(-) @@ -20 +20 @@ -index a595c12354..e27a2642c8 100644 +index 2e9c4be6d0..a715a7d455 100644 @@ -23 +23 @@ -@@ -63,5 +63,5 @@ jobs: +@@ -74,5 +74,5 @@ jobs: @@ -30 +30 @@ -@@ -74,5 +74,5 @@ jobs: +@@ -85,5 +85,5 @@ jobs: @@ -37 +37 @@ -@@ -82,5 +82,5 @@ jobs: +@@ -93,5 +93,5 @@ jobs: @@ -44 +44 @@ -@@ -88,5 +88,5 @@ jobs: +@@ -99,5 +99,5 @@ jobs: @@ -51 +51 @@ -@@ -135,5 +135,5 @@ jobs: +@@ -142,5 +142,5 @@ jobs: @@ -58,35 +57,0 @@ -@@ -162,5 +162,5 @@ jobs: - - name: Retrieve image cache - id: image_cache -- uses: actions/cache@v2 -+ uses: actions/cache@v3 - with: - path: ~/.image -@@ -208,5 +208,5 @@ jobs: - steps: - - name: Checkout sources -- uses: actions/checkout@v2 -+ uses: actions/checkout@v3 - - name: Generate various keys - id: get_keys -@@ -220,5 +220,5 @@ jobs: - - name: Retrieve image cache - id: image_cache -- uses: actions/cache@v2 -+ uses: actions/cache@v3 - with: - path: ~/.image -@@ -230,5 +230,5 @@ jobs: - false - - name: Retrieve ccache cache -- uses: actions/cache@v2 -+ uses: actions/cache@v3 - with: - path: ~/.ccache -@@ -267,5 +267,5 @@ jobs: - - name: Upload logs on failure - if: failure() -- uses: actions/upload-artifact@v2 -+ uses: actions/upload-artifact@v3 - with: - name: ${{ steps.get_keys.outputs.logs }}