diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2022-10-12 16:48:46 +0200 |
---|---|---|
committer | Josef Schlehofer <pepe.schlehofer@gmail.com> | 2022-12-04 16:27:00 +0100 |
commit | c4345c7a7d3cb64f4b07a9b2cb3a7c959c54052b (patch) | |
tree | 62ec0759db21dfe866ff34dfbec7420e554d0834 | |
parent | 2454da3d5e0e2ac02f206923e09019e4ec74d60e (diff) | |
download | upstream-c4345c7a7d3cb64f4b07a9b2cb3a7c959c54052b.tar.gz upstream-c4345c7a7d3cb64f4b07a9b2cb3a7c959c54052b.tar.bz2 upstream-c4345c7a7d3cb64f4b07a9b2cb3a7c959c54052b.zip |
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 <ansuelsmth@gmail.com>
(cherry picked from commit 77b24012db1d696ca87c03fa1bb8bdf2606119e7)
-rw-r--r-- | .github/workflows/kernel.yml | 2 | ||||
-rw-r--r-- | .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 |