From 5d87b956975034d74a40385646a7d358722c0eb3 Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Tue, 25 Oct 2022 11:03:01 +0200 Subject: [PATCH] ci: update github actions to v3 Update checkout and upload-artifact action to v3 to mute nodejs deprecation warning. Signed-off-by: Christian Marangi (cherry picked from commit 52570d4242822e3db678f5484c2ca3e72f485d52) --- .github/workflows/formal.yml | 2 +- .github/workflows/multi-arch-test-build.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/formal.yml b/.github/workflows/formal.yml index 2560917..b3f824c 100644 --- a/.github/workflows/formal.yml +++ b/.github/workflows/formal.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index 7ee4ee9..0627f15 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -48,7 +48,7 @@ jobs: runtime_test: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 @@ -92,13 +92,13 @@ jobs: run: cp bin/packages/${{ matrix.arch }}/packages_ci/*.ipk . || true - name: Store packages - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ matrix.arch}}-packages path: "*.ipk" - name: Store logs - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ matrix.arch}}-logs path: logs/ -- 2.30.2