diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5465377..62df8e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: run: dotnet test Docxodus.Tests/Docxodus.Tests.csproj -c Release --verbosity normal --logger "trx;LogFileName=test-results.trx" - name: Upload test results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: test-results diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index f186b6a..a423106 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -41,7 +41,7 @@ jobs: run: cd npm && npm test - name: Upload Playwright report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: playwright-report diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1f3d2b2..e360ef1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -66,7 +66,7 @@ jobs: dotnet pack tools/docx2oc/docx2oc.csproj -c Release -o ./artifacts -p:PackageVersion=${{ steps.version.outputs.VERSION }} - name: Upload artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: nuget-packages path: ./artifacts/*.nupkg @@ -147,7 +147,7 @@ jobs: run: dotnet publish tools/redline/redline.csproj -c Release -r ${{ matrix.rid }} --self-contained true -p:PublishSingleFile=true -p:EnableCompressionInSingleFile=true -p:Version=${{ steps.version.outputs.VERSION }} -o ./publish - name: Upload binary - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: ./publish/redline* @@ -195,7 +195,7 @@ jobs: run: dotnet publish tools/docx2html/docx2html.csproj -c Release -r ${{ matrix.rid }} --self-contained true -p:PublishSingleFile=true -p:EnableCompressionInSingleFile=true -p:Version=${{ steps.version.outputs.VERSION }} -o ./publish - name: Upload binary - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: ./publish/docx2html* @@ -243,7 +243,7 @@ jobs: run: dotnet publish tools/docx2oc/docx2oc.csproj -c Release -r ${{ matrix.rid }} --self-contained true -p:PublishSingleFile=true -p:EnableCompressionInSingleFile=true -p:Version=${{ steps.version.outputs.VERSION }} -o ./publish - name: Upload binary - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: ./publish/docx2oc*