From ce530dbace01f7680f4a3b3758fe4d7f957cfeb3 Mon Sep 17 00:00:00 2001 From: Erik Ekman Date: Sat, 1 Feb 2025 15:49:26 +0100 Subject: [PATCH] Bump version of deprecated upload-artifact step https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ --- .github/workflows/continuous-build-freebsd.yml | 4 ++-- .github/workflows/continuous-build-netbsd.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-build-freebsd.yml b/.github/workflows/continuous-build-freebsd.yml index 3d4f74f6..ef04d006 100644 --- a/.github/workflows/continuous-build-freebsd.yml +++ b/.github/workflows/continuous-build-freebsd.yml @@ -56,8 +56,8 @@ jobs: mv bin/btop bin/btop-"$COMPILER"-"$GIT_HASH" ls -alh bin - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: - name: btop-x86_64-freebsd-14 + name: btop-x86_64-freebsd-14-${{ matrix.compiler }} path: 'bin/*' if-no-files-found: error diff --git a/.github/workflows/continuous-build-netbsd.yml b/.github/workflows/continuous-build-netbsd.yml index 6bc2ad7b..daa99b1b 100644 --- a/.github/workflows/continuous-build-netbsd.yml +++ b/.github/workflows/continuous-build-netbsd.yml @@ -57,7 +57,7 @@ jobs: mv bin/btop bin/btop-GCC10-"$GIT_HASH" ls -alh bin - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: btop-x86_64-netbsd-9.3 path: 'bin/*'