From 2439178b35682382e9ec4f84d30941d9c391f912 Mon Sep 17 00:00:00 2001 From: Chris Novakovic Date: Fri, 25 Oct 2024 12:21:54 +0100 Subject: [PATCH] Use actions/upload-artifact@v4 in GHA workflow (#13) actions/upload-artifact@v2 is deprecated and workflows aren't able to use it any more. --- .github/workflows/plugin.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/plugin.yaml b/.github/workflows/plugin.yaml index 9225457..87e8d9f 100644 --- a/.github/workflows/plugin.yaml +++ b/.github/workflows/plugin.yaml @@ -10,11 +10,10 @@ jobs: run: ./pleasew test --log_file plz-out/log/test.log - name: Archive logs if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: logs - path: | - plz-out/log + path: plz-out/log release: needs: [test] runs-on: ubuntu-latest