From 77b24012db1d696ca87c03fa1bb8bdf2606119e7 Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Wed, 12 Oct 2022 16:48:46 +0200 Subject: [PATCH] CI: bump actions/download,upload-artifact action to v3 Bump actions/download,upload-artifact action to v3 on every workflow to mute node deprecation warning. Signed-off-by: Christian Marangi --- .github/workflows/kernel.yml | 2 +- .github/workflows/tools.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index f29b18d910..d8f98c531d 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -209,7 +209,7 @@ jobs: - name: Upload logs if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ env.TARGET }}-${{ env.SUBTARGET }}-logs path: "openwrt/logs" diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 2661782f42..def01678c6 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -84,14 +84,14 @@ jobs: - name: Upload logs if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: macos-latest-logs path: ${{ env.WORKPATH }}/openwrt/logs - name: Upload config if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: macos-latest-config path: ${{ env.WORKPATH }}/openwrt/.config @@ -132,14 +132,14 @@ jobs: - name: Upload logs if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: linux-buildbot-logs path: openwrt/logs - name: Upload config if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: linux-buildbot-config path: openwrt/.config @@ -152,7 +152,7 @@ jobs: - name: Upload prebuilt tools if: github.event_name == 'push' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: linux-buildbot-prebuilt-tools path: openwrt/tools.tar @@ -180,7 +180,7 @@ jobs: path: 'openwrt' - name: Download prebuilt tools from build job - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: linux-buildbot-prebuilt-tools path: openwrt