From f3331056736fef3f540a281e2f0d3d14910090f3 Mon Sep 17 00:00:00 2001 From: Andreas Hasselberg Date: Wed, 6 Nov 2024 16:47:17 +0100 Subject: [PATCH] Upgrade upload artifact to v4 --- .github/workflows/build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f98569f..79c6c08a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,14 +61,16 @@ jobs: - name: Produce Documentation run: rebar3 ex_doc || true - name: Publish Documentation - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: edoc + name: edoc OTP${{ matrix.otp-version }} path: doc + overwrite: true - name: Upload Common Test result if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: Common Test ${{ matrix.otp-version }} + name: Common Test OTP${{ matrix.otp-version }} SHA${{ github.sha }} path: _build/test/logs/** + overwrite: true retention-days: 3