From cff717e0122bbb52d4d808d9b2cca88f25451211 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 15 Jul 2024 13:04:52 -0700 Subject: Update deprecated GitHub action upload-artifacts --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bec4f1e1..b745272c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -75,7 +75,7 @@ jobs: run: 7z a build\testresults.zip @src\testresultfilelist.txt - name: Save build - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: artifacts path: build/artifacts/ @@ -97,8 +97,8 @@ jobs: # Do NOT publish logs on `master` branch as they may contain secrets in them. - name: Save logs - if: github.ref != 'refs/heads/master' && (success() || failure()) - uses: actions/upload-artifact@v3 + if: github.ref != 'refs/heads/master' && always() + uses: actions/upload-artifact@v4 with: name: logs_${{ github.run_id }} path: build/logs/ -- cgit v1.2.3-55-g6feb