From 88c27bd63aa78d8f310b6eb99cc2d8e2122a1ad1 Mon Sep 17 00:00:00 2001 From: Luka Void Date: Tue, 3 Dec 2024 15:53:48 +0100 Subject: [PATCH] Update GitHub Actions workflow to use v3 of upload and download artifact actions --- .github/workflows/verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 7e908f6..77b4a60 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -35,7 +35,7 @@ jobs: make verify - name: Upload build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: hex-files path: ./build/*.hex @@ -46,7 +46,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/main') steps: - name: Download build artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: hex-files