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 191E5A0543; Wed, 12 Oct 2022 18:30:03 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0CF2D4280B; Wed, 12 Oct 2022 18:30:03 +0200 (CEST) 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 8D25A40041 for ; Wed, 12 Oct 2022 18:30:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1665592200; 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=Vg15ZVl98zOXfJ6cWw35fzmUaPrG8QJPJ07NqJ5E790=; b=W64zVZDStsuYnoFql4u4P6f/o1o3xTJ1vDnzUOxY6FTiNcK2Y8hTWRTMUee/qgfhg7ZR+z 5IKAaMo7aeNIDIzJ8jJ3Ua3mwARudHjPXp7thrscRPyCZKf7b0rXdbG2T59FBZ96BpYmLK EvUIM+zxs65Kav+3Fk0aY9M1VXqHunw= 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-509-sni_zHqrO3mSIQsJLWLjoA-1; Wed, 12 Oct 2022 12:29:59 -0400 X-MC-Unique: sni_zHqrO3mSIQsJLWLjoA-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 46D3288B767; Wed, 12 Oct 2022 16:29:59 +0000 (UTC) Received: from localhost.localdomain (ovpn-193-115.brq.redhat.com [10.40.193.115]) by smtp.corp.redhat.com (Postfix) with ESMTP id 76E9F492B05; Wed, 12 Oct 2022 16:29:58 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Aaron Conole , Michael Santana Subject: [PATCH 1/2] ci: bump versions of actions in GHA Date: Wed, 12 Oct 2022 18:29:41 +0200 Message-Id: <20221012162942.2965188-2-david.marchand@redhat.com> In-Reply-To: <20221012162942.2965188-1-david.marchand@redhat.com> References: <20221012162942.2965188-1-david.marchand@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: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org 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 | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf17d2b278..187fdef306 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,7 +82,7 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Generate cache keys id: get_ref_keys run: | @@ -93,7 +93,7 @@ jobs: echo -n '::set-output name=abi::' 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 key: ${{ steps.get_ref_keys.outputs.ccache }}-${{ github.ref }} @@ -101,13 +101,13 @@ jobs: ${{ steps.get_ref_keys.outputs.ccache }}-refs/heads/main - name: Retrieve libabigail cache id: libabigail-cache - uses: actions/cache@v2 + uses: actions/cache@v3 if: env.ABI_CHECKS == 'true' with: path: libabigail 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: path: reference @@ -154,7 +154,7 @@ jobs: run: .ci/linux-build.sh - name: Upload logs on failure if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: meson-logs-${{ join(matrix.config.*, '-') }} path: | @@ -181,7 +181,7 @@ jobs: echo 'image-${{ matrix.config.image }}-'$(date -u +%Y-%m-%d) - name: Retrieve image cache id: image_cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.image key: ${{ steps.get_keys.outputs.image }} @@ -235,7 +235,7 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Generate various keys id: get_keys run: | @@ -247,7 +247,7 @@ jobs: echo 'meson-logs-${{ join(matrix.config.*, '-') }}' | tr -d ':' - name: Retrieve image cache id: image_cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.image key: ${{ steps.get_keys.outputs.image }} @@ -257,7 +257,7 @@ jobs: echo 'Image ${{ matrix.config.image }} is not cached.' false - name: Retrieve ccache cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: ${{ steps.get_keys.outputs.ccache }}-${{ github.ref }} @@ -294,7 +294,7 @@ jobs: run: docker kill dpdk - name: Upload logs on failure if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ steps.get_keys.outputs.logs }} path: | -- 2.37.3